pub struct ConflictDetails {
pub path: String,
pub ours: Option<String>,
pub theirs: Option<String>,
pub base: Option<String>,
pub binary: bool,
pub lfs_pointer: bool,
}Fields§
§path: String§ours: Option<String>§theirs: Option<String>§base: Option<String>§binary: bool§lfs_pointer: boolTrait Implementations§
Source§impl Clone for ConflictDetails
impl Clone for ConflictDetails
Source§fn clone(&self) -> ConflictDetails
fn clone(&self) -> ConflictDetails
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ConflictDetails
impl Debug for ConflictDetails
Source§impl<'de> Deserialize<'de> for ConflictDetails
impl<'de> Deserialize<'de> for ConflictDetails
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ConflictDetails
impl PartialEq for ConflictDetails
Source§impl Serialize for ConflictDetails
impl Serialize for ConflictDetails
impl Eq for ConflictDetails
impl StructuralPartialEq for ConflictDetails
Auto Trait Implementations§
impl Freeze for ConflictDetails
impl RefUnwindSafe for ConflictDetails
impl Send for ConflictDetails
impl Sync for ConflictDetails
impl Unpin for ConflictDetails
impl UnwindSafe for ConflictDetails
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