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