pub enum ConfigMutation {
Set {
name: String,
key: String,
value: String,
},
}Expand description
A repository-config change produced by a submodule administration plan.
Variants§
Trait Implementations§
Source§impl Clone for ConfigMutation
impl Clone for ConfigMutation
Source§fn clone(&self) -> ConfigMutation
fn clone(&self) -> ConfigMutation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConfigMutation
impl Debug for ConfigMutation
impl Eq for ConfigMutation
Source§impl PartialEq for ConfigMutation
impl PartialEq for ConfigMutation
impl StructuralPartialEq for ConfigMutation
Auto Trait Implementations§
impl Freeze for ConfigMutation
impl RefUnwindSafe for ConfigMutation
impl Send for ConfigMutation
impl Sync for ConfigMutation
impl Unpin for ConfigMutation
impl UnsafeUnpin for ConfigMutation
impl UnwindSafe for ConfigMutation
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