Enum dropbox_sdk::team::UsersSelectorArg
source · [−]pub enum UsersSelectorArg {
TeamMemberIds(Vec<TeamMemberId>),
ExternalIds(Vec<MemberExternalId>),
Emails(Vec<EmailAddress>),
}Available on crate feature
dbx_team only.Expand description
Argument for selecting a list of users, either by team_member_ids, external_ids or emails.
Variants
TeamMemberIds(Vec<TeamMemberId>)
List of member IDs.
ExternalIds(Vec<MemberExternalId>)
List of external user IDs.
Emails(Vec<EmailAddress>)
List of email addresses.
Trait Implementations
sourceimpl Clone for UsersSelectorArg
impl Clone for UsersSelectorArg
sourcefn clone(&self) -> UsersSelectorArg
fn clone(&self) -> UsersSelectorArg
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 UsersSelectorArg
impl Debug for UsersSelectorArg
sourceimpl<'de> Deserialize<'de> for UsersSelectorArg
impl<'de> Deserialize<'de> for UsersSelectorArg
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<UsersSelectorArg> for UsersSelectorArg
impl PartialEq<UsersSelectorArg> for UsersSelectorArg
sourcefn eq(&self, other: &UsersSelectorArg) -> bool
fn eq(&self, other: &UsersSelectorArg) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &UsersSelectorArg) -> bool
fn ne(&self, other: &UsersSelectorArg) -> bool
This method tests for !=.
sourceimpl Serialize for UsersSelectorArg
impl Serialize for UsersSelectorArg
impl Eq for UsersSelectorArg
impl StructuralEq for UsersSelectorArg
impl StructuralPartialEq for UsersSelectorArg
Auto Trait Implementations
impl RefUnwindSafe for UsersSelectorArg
impl Send for UsersSelectorArg
impl Sync for UsersSelectorArg
impl Unpin for UsersSelectorArg
impl UnwindSafe for UsersSelectorArg
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