pub enum SoftDelete {
Field(SoftDeleteField),
Column(SoftDeleteColumn),
}Expand description
Variants§
Field(SoftDeleteField)
Column(SoftDeleteColumn)
Trait Implementations§
Source§impl Clone for SoftDelete
impl Clone for SoftDelete
Source§fn clone(&self) -> SoftDelete
fn clone(&self) -> SoftDelete
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 SoftDelete
impl Debug for SoftDelete
Source§impl<'de> Deserialize<'de> for SoftDelete
impl<'de> Deserialize<'de> for SoftDelete
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for SoftDelete
impl Hash for SoftDelete
Auto Trait Implementations§
impl Freeze for SoftDelete
impl RefUnwindSafe for SoftDelete
impl Send for SoftDelete
impl Sync for SoftDelete
impl Unpin for SoftDelete
impl UnsafeUnpin for SoftDelete
impl UnwindSafe for SoftDelete
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