pub enum TeamMembershipType {
Full,
Limited,
}
Available on crate features
sync_routes
and dbx_team
only.Variants§
Full
User uses a license and has full access to team resources like the shared quota.
Limited
User does not have access to the shared quota and team admins have restricted administrative control.
Trait Implementations§
Source§impl Clone for TeamMembershipType
impl Clone for TeamMembershipType
Source§fn clone(&self) -> TeamMembershipType
fn clone(&self) -> TeamMembershipType
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 TeamMembershipType
impl Debug for TeamMembershipType
Source§impl<'de> Deserialize<'de> for TeamMembershipType
impl<'de> Deserialize<'de> for TeamMembershipType
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TeamMembershipType
impl PartialEq for TeamMembershipType
Source§impl Serialize for TeamMembershipType
impl Serialize for TeamMembershipType
impl Eq for TeamMembershipType
impl StructuralPartialEq for TeamMembershipType
Auto Trait Implementations§
impl Freeze for TeamMembershipType
impl RefUnwindSafe for TeamMembershipType
impl Send for TeamMembershipType
impl Sync for TeamMembershipType
impl Unpin for TeamMembershipType
impl UnwindSafe for TeamMembershipType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.