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: EntryStatusworking_tree: EntryStatussubmodule: Option<SubmoduleState>file_mode_1: i32file_mode_2: i32file_mode_3: i32file_mode_working_tree: i32object_1: Stringobject_2: Stringobject_3: Stringpath: PathBuf

Trait Implementations

Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.