pub enum TeamRoleType {
Owner,
Member,
Unknown,
}Expand description
All possible roles within a team in terms of access to team settings and operations.
Variants§
Trait Implementations§
Source§impl Clone for TeamRoleType
impl Clone for TeamRoleType
Source§fn clone(&self) -> TeamRoleType
fn clone(&self) -> TeamRoleType
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 TeamRoleType
impl Debug for TeamRoleType
Source§impl<'de> Deserialize<'de> for TeamRoleType
impl<'de> Deserialize<'de> for TeamRoleType
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 PartialEq for TeamRoleType
impl PartialEq for TeamRoleType
Source§impl Serialize for TeamRoleType
impl Serialize for TeamRoleType
impl Eq for TeamRoleType
impl StructuralPartialEq for TeamRoleType
Auto Trait Implementations§
impl Freeze for TeamRoleType
impl RefUnwindSafe for TeamRoleType
impl Send for TeamRoleType
impl Sync for TeamRoleType
impl Unpin for TeamRoleType
impl UnwindSafe for TeamRoleType
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