#[non_exhaustive]pub struct IncludeMembersArg {
pub return_members: 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.return_members: bool
Whether to return the list of members in the group. Note that the default value will cause all the group members to be returned in the response. This may take a long time for large groups.
Implementations§
Source§impl IncludeMembersArg
impl IncludeMembersArg
pub fn with_return_members(self, value: bool) -> Self
Trait Implementations§
Source§impl Clone for IncludeMembersArg
impl Clone for IncludeMembersArg
Source§fn clone(&self) -> IncludeMembersArg
fn clone(&self) -> IncludeMembersArg
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 IncludeMembersArg
impl Debug for IncludeMembersArg
Source§impl Default for IncludeMembersArg
impl Default for IncludeMembersArg
Source§impl<'de> Deserialize<'de> for IncludeMembersArg
impl<'de> Deserialize<'de> for IncludeMembersArg
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 From<GroupMembersAddArg> for IncludeMembersArg
impl From<GroupMembersAddArg> for IncludeMembersArg
Source§fn from(subtype: GroupMembersAddArg) -> Self
fn from(subtype: GroupMembersAddArg) -> Self
Converts to this type from the input type.
Source§impl From<GroupMembersRemoveArg> for IncludeMembersArg
impl From<GroupMembersRemoveArg> for IncludeMembersArg
Source§fn from(subtype: GroupMembersRemoveArg) -> Self
fn from(subtype: GroupMembersRemoveArg) -> Self
Converts to this type from the input type.
Source§impl From<GroupUpdateArgs> for IncludeMembersArg
impl From<GroupUpdateArgs> for IncludeMembersArg
Source§fn from(subtype: GroupUpdateArgs) -> Self
fn from(subtype: GroupUpdateArgs) -> Self
Converts to this type from the input type.
Source§impl PartialEq for IncludeMembersArg
impl PartialEq for IncludeMembersArg
Source§impl Serialize for IncludeMembersArg
impl Serialize for IncludeMembersArg
impl Eq for IncludeMembersArg
impl StructuralPartialEq for IncludeMembersArg
Auto Trait Implementations§
impl Freeze for IncludeMembersArg
impl RefUnwindSafe for IncludeMembersArg
impl Send for IncludeMembersArg
impl Sync for IncludeMembersArg
impl Unpin for IncludeMembersArg
impl UnwindSafe for IncludeMembersArg
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.