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