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