pub struct UserSearchByKeyword {
pub users: Vec<UserByKeyword>,
pub next_cursor: Option<String>,
pub previous_cursor: Option<String>,
}Fields§
§users: Vec<UserByKeyword>§next_cursor: Option<String>§previous_cursor: Option<String>Trait Implementations§
Source§impl Clone for UserSearchByKeyword
impl Clone for UserSearchByKeyword
Source§fn clone(&self) -> UserSearchByKeyword
fn clone(&self) -> UserSearchByKeyword
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 UserSearchByKeyword
impl Debug for UserSearchByKeyword
Source§impl<'de> Deserialize<'de> for UserSearchByKeyword
impl<'de> Deserialize<'de> for UserSearchByKeyword
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 UserSearchByKeyword
impl PartialEq for UserSearchByKeyword
Source§impl Serialize for UserSearchByKeyword
impl Serialize for UserSearchByKeyword
impl Eq for UserSearchByKeyword
impl StructuralPartialEq for UserSearchByKeyword
Auto Trait Implementations§
impl Freeze for UserSearchByKeyword
impl RefUnwindSafe for UserSearchByKeyword
impl Send for UserSearchByKeyword
impl Sync for UserSearchByKeyword
impl Unpin for UserSearchByKeyword
impl UnwindSafe for UserSearchByKeyword
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