Struct git2::StatusEntry [−][src]
pub struct StatusEntry<'statuses> { /* fields omitted */ }Expand description
A structure representing an entry in the Statuses structure.
Instances are created through the .iter() method or the .get() method.
Implementations
impl<'statuses> StatusEntry<'statuses>[src]
impl<'statuses> StatusEntry<'statuses>[src]pub fn path_bytes(&self) -> &[u8]ⓘ[src]
pub fn path_bytes(&self) -> &[u8]ⓘ[src]Access the bytes for this entry’s corresponding pathname
pub fn path(&self) -> Option<&str>[src]
pub fn path(&self) -> Option<&str>[src]Access this entry’s path name as a string.
Returns None if the path is not valid utf-8.
pub fn head_to_index(&self) -> Option<DiffDelta<'statuses>>[src]
pub fn head_to_index(&self) -> Option<DiffDelta<'statuses>>[src]Access detailed information about the differences between the file in HEAD and the file in the index.
pub fn index_to_workdir(&self) -> Option<DiffDelta<'statuses>>[src]
pub fn index_to_workdir(&self) -> Option<DiffDelta<'statuses>>[src]Access detailed information about the differences between the file in the index and the file in the working directory.