Trait nicegit::TreeExt[][src]

pub trait TreeExt {
    fn entry_names(&self) -> Vec<String>;
fn dir_listing(&self) -> GitDirectory; }

A set of extension methods for the Tree type in git2.

Required Methods

Get a list of all the named entries at this level in the tree.

Get a higher level, pre-sorted view of this level in the tree analogous to a traditional filesystem, separated into directories and files.

Implementations on Foreign Types

impl<'repo> TreeExt for Tree<'repo>
[src]

Implementors