Enum dropbox_sdk::team::MembersGetInfoItem
source · [−]pub enum MembersGetInfoItem {
IdNotFound(String),
MemberInfo(TeamMemberInfo),
}Available on crate feature
dbx_team only.Expand description
Describes a result obtained for a single user whose id was specified in the parameter of
members_get_info().
Variants
IdNotFound(String)
An ID that was provided as a parameter to members_get_info() or
members_get_info_v2(), and did not match a corresponding user. This
might be a team_member_id, an email, or an external ID, depending on how the method was
called.
MemberInfo(TeamMemberInfo)
Info about a team member.
Trait Implementations
sourceimpl Clone for MembersGetInfoItem
impl Clone for MembersGetInfoItem
sourcefn clone(&self) -> MembersGetInfoItem
fn clone(&self) -> MembersGetInfoItem
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 MembersGetInfoItem
impl Debug for MembersGetInfoItem
sourceimpl<'de> Deserialize<'de> for MembersGetInfoItem
impl<'de> Deserialize<'de> for MembersGetInfoItem
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<MembersGetInfoItem> for MembersGetInfoItem
impl PartialEq<MembersGetInfoItem> for MembersGetInfoItem
sourcefn eq(&self, other: &MembersGetInfoItem) -> bool
fn eq(&self, other: &MembersGetInfoItem) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &MembersGetInfoItem) -> bool
fn ne(&self, other: &MembersGetInfoItem) -> bool
This method tests for !=.
sourceimpl Serialize for MembersGetInfoItem
impl Serialize for MembersGetInfoItem
impl Eq for MembersGetInfoItem
impl StructuralEq for MembersGetInfoItem
impl StructuralPartialEq for MembersGetInfoItem
Auto Trait Implementations
impl RefUnwindSafe for MembersGetInfoItem
impl Send for MembersGetInfoItem
impl Sync for MembersGetInfoItem
impl Unpin for MembersGetInfoItem
impl UnwindSafe for MembersGetInfoItem
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