pub enum AppendMode {
WithConflictWarning,
SkipConflicts,
Overwrite,
}Expand description
How to handle conflicts when appending
Variants§
WithConflictWarning
Warn about conflicts but still append (user sees warning)
SkipConflicts
Automatically skip conflicting variables
Overwrite
Overwrite existing values (use with caution!)
Trait Implementations§
Source§impl Clone for AppendMode
impl Clone for AppendMode
Source§fn clone(&self) -> AppendMode
fn clone(&self) -> AppendMode
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 AppendMode
impl Debug for AppendMode
Source§impl PartialEq for AppendMode
impl PartialEq for AppendMode
impl Copy for AppendMode
impl StructuralPartialEq for AppendMode
Auto Trait Implementations§
impl Freeze for AppendMode
impl RefUnwindSafe for AppendMode
impl Send for AppendMode
impl Sync for AppendMode
impl Unpin for AppendMode
impl UnsafeUnpin for AppendMode
impl UnwindSafe for AppendMode
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