Struct conserve::index::Entry [] [src]

pub struct Entry {
    pub apath: String,
    pub mtime: Option<u64>,
    pub kind: IndexKind,
    pub blake2b: Option<String>,
    pub addrs: Vec<Address>,
    pub target: Option<String>,
}

Description of one archived file.

Fields

Path of this entry relative to the base of the backup, in apath form.

File modification time, in whole seconds past the Unix epoch.

Type of file.

BLAKE2b hash of the entire original file, without salt.

Blocks holding the file contents.

For symlinks only, the target of the symlink.

Trait Implementations

impl Debug for Entry
[src]

[src]

Formats the value using the given formatter.

impl Decodable for Entry
[src]

[src]

Deserialize a value using a Decoder.

impl Encodable for Entry
[src]

[src]

Serialize a value using an Encoder.