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