pub struct UserListResource {
pub object: String,
pub data: Vec<User>,
pub has_more: bool,
pub next: Option<String>,
}Available on crate feature
administration-types only.Expand description
Paginated list of user objects returned when inspecting group membership.
Fields§
§object: StringThe object type, which is always list.
data: Vec<User>Users in the current page.
has_more: boolWhether more users are available when paginating.
next: Option<String>Cursor to fetch the next page of results, or null when no further users are available.
Trait Implementations§
Source§impl Clone for UserListResource
impl Clone for UserListResource
Source§fn clone(&self) -> UserListResource
fn clone(&self) -> UserListResource
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 UserListResource
impl Debug for UserListResource
Source§impl<'de> Deserialize<'de> for UserListResource
impl<'de> Deserialize<'de> for UserListResource
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
Source§impl PartialEq for UserListResource
impl PartialEq for UserListResource
Source§impl Serialize for UserListResource
impl Serialize for UserListResource
impl StructuralPartialEq for UserListResource
Auto Trait Implementations§
impl Freeze for UserListResource
impl RefUnwindSafe for UserListResource
impl Send for UserListResource
impl Sync for UserListResource
impl Unpin for UserListResource
impl UnsafeUnpin for UserListResource
impl UnwindSafe for UserListResource
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