Enum dropbox_sdk::team::GroupSelector
source · [−]pub enum GroupSelector {
GroupId(GroupId),
GroupExternalId(GroupExternalId),
}Available on crate feature
dbx_team only.Expand description
Argument for selecting a single group, either by group_id or by external group ID.
Variants
GroupId(GroupId)
Group ID.
GroupExternalId(GroupExternalId)
External ID of the group.
Trait Implementations
sourceimpl Clone for GroupSelector
impl Clone for GroupSelector
sourcefn clone(&self) -> GroupSelector
fn clone(&self) -> GroupSelector
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for GroupSelector
impl Debug for GroupSelector
sourceimpl<'de> Deserialize<'de> for GroupSelector
impl<'de> Deserialize<'de> for GroupSelector
sourcefn 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
sourceimpl PartialEq<GroupSelector> for GroupSelector
impl PartialEq<GroupSelector> for GroupSelector
sourcefn eq(&self, other: &GroupSelector) -> bool
fn eq(&self, other: &GroupSelector) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &GroupSelector) -> bool
fn ne(&self, other: &GroupSelector) -> bool
This method tests for !=.
sourceimpl Serialize for GroupSelector
impl Serialize for GroupSelector
impl Eq for GroupSelector
impl StructuralEq for GroupSelector
impl StructuralPartialEq for GroupSelector
Auto Trait Implementations
impl RefUnwindSafe for GroupSelector
impl Send for GroupSelector
impl Sync for GroupSelector
impl Unpin for GroupSelector
impl UnwindSafe for GroupSelector
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more