Struct nicegit::DirectoryEntry[][src]

pub struct DirectoryEntry<'repo> {
    pub name: String,
    pub node: TreeEntry<'repo>,
}

A simple struct for a TreeEntry prepackaged with it's name for easier use.

Fields

The file/directory name, without any relative or absolute paths.

The TreeEntry with this name.

Auto Trait Implementations

impl<'repo> !Send for DirectoryEntry<'repo>

impl<'repo> !Sync for DirectoryEntry<'repo>