pub struct Entry {
pub index: EntryStatus,
pub working_tree: EntryStatus,
pub submodule: Option<SubmoduleState>,
pub file_mode_head: i32,
pub file_mode_index: i32,
pub file_mode_working_tree: i32,
pub object_head: String,
pub object_index: String,
pub rc_score: String,
pub path: PathBuf,
pub original_path: Option<PathBuf>,
}Fields§
§index: EntryStatus§working_tree: EntryStatus§submodule: Option<SubmoduleState>§file_mode_head: i32§file_mode_index: i32§file_mode_working_tree: i32§object_head: String§object_index: String§rc_score: String§path: PathBuf§original_path: Option<PathBuf>Trait Implementations§
impl StructuralPartialEq for Entry
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more