Enum dropbox_sdk::team::GroupsGetInfoItem
source · [−]pub enum GroupsGetInfoItem {
IdNotFound(String),
GroupInfo(GroupFullInfo),
}Available on crate feature
dbx_team only.Variants
IdNotFound(String)
An ID that was provided as a parameter to groups_get_info(), and did
not match a corresponding group. The ID can be a group ID, or an external ID, depending on
how the method was called.
GroupInfo(GroupFullInfo)
Info about a group.
Trait Implementations
sourceimpl Clone for GroupsGetInfoItem
impl Clone for GroupsGetInfoItem
sourcefn clone(&self) -> GroupsGetInfoItem
fn clone(&self) -> GroupsGetInfoItem
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 GroupsGetInfoItem
impl Debug for GroupsGetInfoItem
sourceimpl<'de> Deserialize<'de> for GroupsGetInfoItem
impl<'de> Deserialize<'de> for GroupsGetInfoItem
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<GroupsGetInfoItem> for GroupsGetInfoItem
impl PartialEq<GroupsGetInfoItem> for GroupsGetInfoItem
sourcefn eq(&self, other: &GroupsGetInfoItem) -> bool
fn eq(&self, other: &GroupsGetInfoItem) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &GroupsGetInfoItem) -> bool
fn ne(&self, other: &GroupsGetInfoItem) -> bool
This method tests for !=.
sourceimpl Serialize for GroupsGetInfoItem
impl Serialize for GroupsGetInfoItem
impl Eq for GroupsGetInfoItem
impl StructuralEq for GroupsGetInfoItem
impl StructuralPartialEq for GroupsGetInfoItem
Auto Trait Implementations
impl RefUnwindSafe for GroupsGetInfoItem
impl Send for GroupsGetInfoItem
impl Sync for GroupsGetInfoItem
impl Unpin for GroupsGetInfoItem
impl UnwindSafe for GroupsGetInfoItem
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