pub enum SubtreeOperation {
Import {
subtree: String,
git_ref: String,
},
Split {
subtree: String,
git_ref: String,
},
Update {
subtree: String,
git_ref: String,
},
}
Expand description
Represents different subtree operations encoded in the commit message.
Variants§
Trait Implementations§
Source§impl Clone for SubtreeOperation
impl Clone for SubtreeOperation
Source§fn clone(&self) -> SubtreeOperation
fn clone(&self) -> SubtreeOperation
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 SubtreeOperation
impl Debug for SubtreeOperation
Source§impl PartialEq for SubtreeOperation
impl PartialEq for SubtreeOperation
impl Eq for SubtreeOperation
impl StructuralPartialEq for SubtreeOperation
Auto Trait Implementations§
impl Freeze for SubtreeOperation
impl RefUnwindSafe for SubtreeOperation
impl Send for SubtreeOperation
impl Sync for SubtreeOperation
impl Unpin for SubtreeOperation
impl UnwindSafe for SubtreeOperation
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