pub enum MetaDeletedAction {
Deleted,
}
Expand description
MetaDeletedAction
JSON schema
{
"type": "string",
"enum": [
"deleted"
]
}
Variants§
Deleted
Trait Implementations§
Source§impl Clone for MetaDeletedAction
impl Clone for MetaDeletedAction
Source§fn clone(&self) -> MetaDeletedAction
fn clone(&self) -> MetaDeletedAction
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 MetaDeletedAction
impl Debug for MetaDeletedAction
Source§impl<'de> Deserialize<'de> for MetaDeletedAction
impl<'de> Deserialize<'de> for MetaDeletedAction
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 From<&MetaDeletedAction> for MetaDeletedAction
impl From<&MetaDeletedAction> for MetaDeletedAction
Source§fn from(value: &MetaDeletedAction) -> Self
fn from(value: &MetaDeletedAction) -> Self
Converts to this type from the input type.
Source§impl FromStr for MetaDeletedAction
impl FromStr for MetaDeletedAction
Source§impl Hash for MetaDeletedAction
impl Hash for MetaDeletedAction
Source§impl Ord for MetaDeletedAction
impl Ord for MetaDeletedAction
Source§fn cmp(&self, other: &MetaDeletedAction) -> Ordering
fn cmp(&self, other: &MetaDeletedAction) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MetaDeletedAction
impl PartialEq for MetaDeletedAction
Source§impl PartialOrd for MetaDeletedAction
impl PartialOrd for MetaDeletedAction
Source§impl Serialize for MetaDeletedAction
impl Serialize for MetaDeletedAction
Source§impl ToString for MetaDeletedAction
impl ToString for MetaDeletedAction
Source§impl TryFrom<&String> for MetaDeletedAction
impl TryFrom<&String> for MetaDeletedAction
Source§impl TryFrom<&str> for MetaDeletedAction
impl TryFrom<&str> for MetaDeletedAction
Source§impl TryFrom<String> for MetaDeletedAction
impl TryFrom<String> for MetaDeletedAction
impl Copy for MetaDeletedAction
impl Eq for MetaDeletedAction
impl StructuralPartialEq for MetaDeletedAction
Auto Trait Implementations§
impl Freeze for MetaDeletedAction
impl RefUnwindSafe for MetaDeletedAction
impl Send for MetaDeletedAction
impl Sync for MetaDeletedAction
impl Unpin for MetaDeletedAction
impl UnwindSafe for MetaDeletedAction
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