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