pub enum GroupAccessType {
Member,
Owner,
}
Available on crate features
sync_routes
and dbx_team
only.Expand description
Role of a user in group.
Variants§
Member
User is a member of the group, but has no special permissions.
Owner
User can rename the group, and add/remove members.
Trait Implementations§
Source§impl Clone for GroupAccessType
impl Clone for GroupAccessType
Source§fn clone(&self) -> GroupAccessType
fn clone(&self) -> GroupAccessType
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 GroupAccessType
impl Debug for GroupAccessType
Source§impl<'de> Deserialize<'de> for GroupAccessType
impl<'de> Deserialize<'de> for GroupAccessType
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 GroupAccessType
impl PartialEq for GroupAccessType
Source§impl Serialize for GroupAccessType
impl Serialize for GroupAccessType
impl Eq for GroupAccessType
impl StructuralPartialEq for GroupAccessType
Auto Trait Implementations§
impl Freeze for GroupAccessType
impl RefUnwindSafe for GroupAccessType
impl Send for GroupAccessType
impl Sync for GroupAccessType
impl Unpin for GroupAccessType
impl UnwindSafe for GroupAccessType
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.