pub enum SoftDeleteOperation {
Delete,
}Expand description
Persistence operation currently requesting soft-delete values.
Variants§
Delete
Logical delete path for an existing row.
Trait Implementations§
Source§impl Clone for SoftDeleteOperation
impl Clone for SoftDeleteOperation
Source§fn clone(&self) -> SoftDeleteOperation
fn clone(&self) -> SoftDeleteOperation
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 SoftDeleteOperation
impl Debug for SoftDeleteOperation
Source§impl PartialEq for SoftDeleteOperation
impl PartialEq for SoftDeleteOperation
Source§fn eq(&self, other: &SoftDeleteOperation) -> bool
fn eq(&self, other: &SoftDeleteOperation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SoftDeleteOperation
impl Eq for SoftDeleteOperation
impl StructuralPartialEq for SoftDeleteOperation
Auto Trait Implementations§
impl Freeze for SoftDeleteOperation
impl RefUnwindSafe for SoftDeleteOperation
impl Send for SoftDeleteOperation
impl Sync for SoftDeleteOperation
impl Unpin for SoftDeleteOperation
impl UnsafeUnpin for SoftDeleteOperation
impl UnwindSafe for SoftDeleteOperation
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