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