pub struct FoundUsers {
pub users: Option<Vec<UserPickerUser>>,
pub total: Option<i32>,
pub header: Option<String>,
}
Expand description
FoundUsers : The list of users found in a search, including header text (Showing X of Y matching users) and total of matched users.
Fields§
§users: Option<Vec<UserPickerUser>>
§total: Option<i32>
The total number of users found in the search.
header: Option<String>
Header text indicating the number of users in the response and the total number of users found in the search.
Implementations§
Source§impl FoundUsers
impl FoundUsers
Sourcepub fn new() -> FoundUsers
pub fn new() -> FoundUsers
The list of users found in a search, including header text (Showing X of Y matching users) and total of matched users.
Trait Implementations§
Source§impl Clone for FoundUsers
impl Clone for FoundUsers
Source§fn clone(&self) -> FoundUsers
fn clone(&self) -> FoundUsers
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 FoundUsers
impl Debug for FoundUsers
Source§impl Default for FoundUsers
impl Default for FoundUsers
Source§fn default() -> FoundUsers
fn default() -> FoundUsers
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FoundUsers
impl<'de> Deserialize<'de> for FoundUsers
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 FoundUsers
impl PartialEq for FoundUsers
Source§impl Serialize for FoundUsers
impl Serialize for FoundUsers
impl StructuralPartialEq for FoundUsers
Auto Trait Implementations§
impl Freeze for FoundUsers
impl RefUnwindSafe for FoundUsers
impl Send for FoundUsers
impl Sync for FoundUsers
impl Unpin for FoundUsers
impl UnwindSafe for FoundUsers
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