Struct libalpm::File [] [src]

pub struct File<'a> {
    pub name: &'a str,
    pub size: u64,
    pub mode: u32,
}

A file in a package

Fields

The filename.

The size of the file in bytes.

The file mode. e.g. 0644 would be urw,gr,or

Trait Implementations

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

Formats the value using the given formatter.

impl<'a> PartialEq for File<'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 File<'a>
[src]