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