pub struct UnmergedEntry {
pub index: EntryStatus,
pub working_tree: EntryStatus,
pub submodule: Option<SubmoduleState>,
pub file_mode_1: i32,
pub file_mode_2: i32,
pub file_mode_3: i32,
pub file_mode_working_tree: i32,
pub object_1: String,
pub object_2: String,
pub object_3: String,
pub path: PathBuf,
}
Fields§
§index: EntryStatus
§working_tree: EntryStatus
§submodule: Option<SubmoduleState>
§file_mode_1: i32
§file_mode_2: i32
§file_mode_3: i32
§file_mode_working_tree: i32
§object_1: String
§object_2: String
§object_3: String
§path: PathBuf
Trait Implementations§
Source§impl Debug for UnmergedEntry
impl Debug for UnmergedEntry
Source§impl Default for UnmergedEntry
impl Default for UnmergedEntry
Source§fn default() -> UnmergedEntry
fn default() -> UnmergedEntry
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UnmergedEntry
impl RefUnwindSafe for UnmergedEntry
impl Send for UnmergedEntry
impl Sync for UnmergedEntry
impl Unpin for UnmergedEntry
impl UnwindSafe for UnmergedEntry
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