[][src]Struct git2::StatusEntry

pub struct StatusEntry<'statuses> { /* fields omitted */ }

A structure representing an entry in the Statuses structure.

Instances are created through the .iter() method or the .get() method.

Methods

impl<'statuses> StatusEntry<'statuses>[src]

pub fn path_bytes(&self) -> &[u8][src]

Access the bytes for this entry's corresponding pathname

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 status(&self) -> Status[src]

Access the status flags for this file

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]

Access detailed information about the differences between the file in the index and the file in the working directory.

Auto Trait Implementations

impl<'statuses> !Send for StatusEntry<'statuses>

impl<'statuses> !Sync for StatusEntry<'statuses>

impl<'statuses> Unpin for StatusEntry<'statuses>

impl<'statuses> UnwindSafe for StatusEntry<'statuses>

impl<'statuses> RefUnwindSafe for StatusEntry<'statuses>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]