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