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 moreimpl Copy for SoftDeleteOperation
Source§impl Debug for SoftDeleteOperation
impl Debug for SoftDeleteOperation
impl Eq for SoftDeleteOperation
Source§impl PartialEq for SoftDeleteOperation
impl PartialEq 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