Struct git2::TreeEntry [−][src]
pub struct TreeEntry<'tree> { /* fields omitted */ }A structure representing an entry inside of a tree. An entry is borrowed from a tree.
Methods
impl<'tree> TreeEntry<'tree>[src]
impl<'tree> TreeEntry<'tree>pub fn id(&self) -> Oid[src]
pub fn id(&self) -> OidGet the id of the object pointed by the entry
pub fn name(&self) -> Option<&str>[src]
pub fn name(&self) -> Option<&str>Get the filename of a tree entry
Returns None if the name is not valid utf-8
pub fn name_bytes(&self) -> &[u8][src]
pub fn name_bytes(&self) -> &[u8]Get the filename of a tree entry
pub fn to_object<'a>(&self, repo: &'a Repository) -> Result<Object<'a>, Error>[src]
pub fn to_object<'a>(&self, repo: &'a Repository) -> Result<Object<'a>, Error>Convert a tree entry to the object it points to.
pub fn kind(&self) -> Option<ObjectType>[src]
pub fn kind(&self) -> Option<ObjectType>Get the type of the object pointed by the entry
pub fn filemode(&self) -> i32[src]
pub fn filemode(&self) -> i32Get the UNIX file attributes of a tree entry
pub fn filemode_raw(&self) -> i32[src]
pub fn filemode_raw(&self) -> i32Get the raw UNIX file attributes of a tree entry
pub fn to_owned(&self) -> TreeEntry<'static>[src]
pub fn to_owned(&self) -> TreeEntry<'static>Convert this entry of any lifetime into an owned signature with a static lifetime.
This will use the Clone::clone implementation under the hood.
Trait Implementations
impl<'a> Clone for TreeEntry<'a>[src]
impl<'a> Clone for TreeEntry<'a>fn clone(&self) -> TreeEntry<'a>[src]
fn clone(&self) -> TreeEntry<'a>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl<'a> PartialOrd for TreeEntry<'a>[src]
impl<'a> PartialOrd for TreeEntry<'a>fn partial_cmp(&self, other: &TreeEntry<'a>) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &TreeEntry<'a>) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
fn lt(&self, other: &Rhs) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool1.0.0[src]
fn le(&self, other: &Rhs) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
fn gt(&self, other: &Rhs) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
fn ge(&self, other: &Rhs) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl<'a> Ord for TreeEntry<'a>[src]
impl<'a> Ord for TreeEntry<'a>fn cmp(&self, other: &TreeEntry<'a>) -> Ordering[src]
fn cmp(&self, other: &TreeEntry<'a>) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl<'a> PartialEq for TreeEntry<'a>[src]
impl<'a> PartialEq for TreeEntry<'a>fn eq(&self, other: &TreeEntry<'a>) -> bool[src]
fn eq(&self, other: &TreeEntry<'a>) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl<'a> Eq for TreeEntry<'a>[src]
impl<'a> Eq for TreeEntry<'a>impl<'a> Drop for TreeEntry<'a>[src]
impl<'a> Drop for TreeEntry<'a>