Struct libalpm::FileList [] [src]

pub struct FileList<'a> {
    pub list: Vec<File<'a>>,
    // some fields omitted
}

A list of files in a package

Fields

Thie files this filelist contains

Methods

impl<'a> FileList<'a>
[src]

Test to see whether this filelist contains a path given.

The path should be relative to the installation root without preceeding slash (e.g. etc/pacman.conf). Directories should have a trailing slash (e.g. etc/)

Trait Implementations

impl<'a> Debug for FileList<'a>
[src]

Formats the value using the given formatter.

impl<'a> PartialEq for FileList<'a>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'a> Eq for FileList<'a>
[src]