pub struct Directory {
    pub name: BString,
    pub untracked_entries: Vec<BString>,
    pub sub_directories: Vec<usize>,
    pub stat: Option<Stat>,
    pub exclude_file_oid: Option<ObjectId>,
    pub check_only: bool,
}
Expand description

A directory with information about its untracked files, and its sub-directories

Fields

name: BString

The directories name, or an empty string if this is the root directory.

untracked_entries: Vec<BString>

Untracked files and directory names

sub_directories: Vec<usize>

indices for sub-directories similar to this one.

stat: Option<Stat>

The directories stat data, if available or valid // TODO: or is it the exclude file?

exclude_file_oid: Option<ObjectId>

The oid of a .gitignore file, if it exists

check_only: bool

TODO: figure out what this really does

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.