pub struct GroupUsers {
pub users: Vec<(GroupUser, GroupRole)>,
pub next_cursor: Option<String>,
pub previous_cursor: Option<String>,
}Fields§
§users: Vec<(GroupUser, GroupRole)>§next_cursor: Option<String>§previous_cursor: Option<String>Trait Implementations§
Source§impl Clone for GroupUsers
impl Clone for GroupUsers
Source§fn clone(&self) -> GroupUsers
fn clone(&self) -> GroupUsers
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GroupUsers
impl Debug for GroupUsers
Source§impl<'de> Deserialize<'de> for GroupUsers
impl<'de> Deserialize<'de> for GroupUsers
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for GroupUsers
Source§impl PartialEq for GroupUsers
impl PartialEq for GroupUsers
Source§fn eq(&self, other: &GroupUsers) -> bool
fn eq(&self, other: &GroupUsers) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GroupUsers
impl Serialize for GroupUsers
impl StructuralPartialEq for GroupUsers
Auto Trait Implementations§
impl Freeze for GroupUsers
impl RefUnwindSafe for GroupUsers
impl Send for GroupUsers
impl Sync for GroupUsers
impl Unpin for GroupUsers
impl UnsafeUnpin for GroupUsers
impl UnwindSafe for GroupUsers
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