Struct dropbox_sdk::team::MembersListResult
source · [−]#[non_exhaustive]pub struct MembersListResult {
pub members: Vec<TeamMemberInfo>,
pub cursor: String,
pub has_more: bool,
}Available on crate feature
dbx_team only.Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.members: Vec<TeamMemberInfo>List of team members.
cursor: StringPass the cursor into members_list_continue() to obtain the
additional members.
has_more: boolIs true if there are additional team members that have not been returned yet. An additional
call to members_list_continue() can retrieve them.
Implementations
Trait Implementations
sourceimpl Clone for MembersListResult
impl Clone for MembersListResult
sourcefn clone(&self) -> MembersListResult
fn clone(&self) -> MembersListResult
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 MembersListResult
impl Debug for MembersListResult
sourceimpl<'de> Deserialize<'de> for MembersListResult
impl<'de> Deserialize<'de> for MembersListResult
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<MembersListResult> for MembersListResult
impl PartialEq<MembersListResult> for MembersListResult
sourcefn eq(&self, other: &MembersListResult) -> bool
fn eq(&self, other: &MembersListResult) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &MembersListResult) -> bool
fn ne(&self, other: &MembersListResult) -> bool
This method tests for !=.
sourceimpl Serialize for MembersListResult
impl Serialize for MembersListResult
impl Eq for MembersListResult
impl StructuralEq for MembersListResult
impl StructuralPartialEq for MembersListResult
Auto Trait Implementations
impl RefUnwindSafe for MembersListResult
impl Send for MembersListResult
impl Sync for MembersListResult
impl Unpin for MembersListResult
impl UnwindSafe for MembersListResult
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