Struct git2::StatusEntry
source · [−]pub struct StatusEntry<'statuses> { /* private fields */ }
Expand description
A structure representing an entry in the Statuses
structure.
Instances are created through the .iter()
method or the .get()
method.
Implementations
sourceimpl<'statuses> StatusEntry<'statuses>
impl<'statuses> StatusEntry<'statuses>
sourcepub fn path_bytes(&self) -> &[u8]ⓘNotable traits for &'_ mut [u8]impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
pub fn path_bytes(&self) -> &[u8]ⓘNotable traits for &'_ mut [u8]impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
Access the bytes for this entry’s corresponding pathname
sourcepub fn path(&self) -> Option<&str>
pub fn path(&self) -> Option<&str>
Access this entry’s path name as a string.
Returns None
if the path is not valid utf-8.
sourcepub fn head_to_index(&self) -> Option<DiffDelta<'statuses>>
pub fn head_to_index(&self) -> Option<DiffDelta<'statuses>>
Access detailed information about the differences between the file in HEAD and the file in the index.
sourcepub fn index_to_workdir(&self) -> Option<DiffDelta<'statuses>>
pub fn index_to_workdir(&self) -> Option<DiffDelta<'statuses>>
Access detailed information about the differences between the file in the index and the file in the working directory.
Auto Trait Implementations
impl<'statuses> RefUnwindSafe for StatusEntry<'statuses>
impl<'statuses> !Send for StatusEntry<'statuses>
impl<'statuses> !Sync for StatusEntry<'statuses>
impl<'statuses> Unpin for StatusEntry<'statuses>
impl<'statuses> UnwindSafe for StatusEntry<'statuses>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more