pub enum GroupSelector {
GroupId(GroupId),
GroupExternalId(GroupExternalId),
}
Available on crate features
sync_routes
and dbx_team
only.Expand description
Argument for selecting a single group, either by group_id or by external group ID.
Variants§
Trait Implementations§
Source§impl Clone for GroupSelector
impl Clone for GroupSelector
Source§fn clone(&self) -> GroupSelector
fn clone(&self) -> GroupSelector
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 GroupSelector
impl Debug for GroupSelector
Source§impl<'de> Deserialize<'de> for GroupSelector
impl<'de> Deserialize<'de> for GroupSelector
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 GroupSelector
impl PartialEq for GroupSelector
Source§impl Serialize for GroupSelector
impl Serialize for GroupSelector
impl Eq for GroupSelector
impl StructuralPartialEq for GroupSelector
Auto Trait Implementations§
impl Freeze for GroupSelector
impl RefUnwindSafe for GroupSelector
impl Send for GroupSelector
impl Sync for GroupSelector
impl Unpin for GroupSelector
impl UnwindSafe for GroupSelector
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.