pub struct MergeDriverSetupResult {
pub git_config_set: bool,
pub gitattributes_updated: bool,
pub warning: Option<String>,
}Expand description
Result of setting up the merge driver
Fields§
§git_config_set: bool§gitattributes_updated: bool§warning: Option<String>Trait Implementations§
Source§impl Clone for MergeDriverSetupResult
impl Clone for MergeDriverSetupResult
Source§fn clone(&self) -> MergeDriverSetupResult
fn clone(&self) -> MergeDriverSetupResult
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 moreAuto Trait Implementations§
impl Freeze for MergeDriverSetupResult
impl RefUnwindSafe for MergeDriverSetupResult
impl Send for MergeDriverSetupResult
impl Sync for MergeDriverSetupResult
impl Unpin for MergeDriverSetupResult
impl UnwindSafe for MergeDriverSetupResult
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