pub struct UserListResponse {
pub object: String,
pub data: Vec<User>,
pub first_id: String,
pub last_id: String,
pub has_more: bool,
}
Expand description
A list of User
objects.
Fields§
§object: String
§data: Vec<User>
§first_id: String
§last_id: String
§has_more: bool
Trait Implementations§
Source§impl Clone for UserListResponse
impl Clone for UserListResponse
Source§fn clone(&self) -> UserListResponse
fn clone(&self) -> UserListResponse
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 UserListResponse
impl Debug for UserListResponse
Source§impl<'de> Deserialize<'de> for UserListResponse
impl<'de> Deserialize<'de> for UserListResponse
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 UserListResponse
impl PartialEq for UserListResponse
Source§impl Serialize for UserListResponse
impl Serialize for UserListResponse
impl StructuralPartialEq for UserListResponse
Auto Trait Implementations§
impl Freeze for UserListResponse
impl RefUnwindSafe for UserListResponse
impl Send for UserListResponse
impl Sync for UserListResponse
impl Unpin for UserListResponse
impl UnwindSafe for UserListResponse
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