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