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