pub enum CopyDataOp {
Replace,
Append,
Merge,
}Expand description
Operation type for data copying.
Variants§
Trait Implementations§
Source§impl Clone for CopyDataOp
impl Clone for CopyDataOp
Source§fn clone(&self) -> CopyDataOp
fn clone(&self) -> CopyDataOp
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 moreimpl Copy for CopyDataOp
Auto Trait Implementations§
impl Freeze for CopyDataOp
impl RefUnwindSafe for CopyDataOp
impl Send for CopyDataOp
impl Sync for CopyDataOp
impl Unpin for CopyDataOp
impl UnsafeUnpin for CopyDataOp
impl UnwindSafe for CopyDataOp
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