pub struct UserByKeyword {
pub id: u64,
pub name: String,
pub display_name: String,
pub previous_names: Vec<String>,
pub is_verified: bool,
}Fields§
§id: u64§name: String§display_name: String§previous_names: Vec<String>§is_verified: boolTrait Implementations§
Source§impl Clone for UserByKeyword
impl Clone for UserByKeyword
Source§fn clone(&self) -> UserByKeyword
fn clone(&self) -> UserByKeyword
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 UserByKeyword
impl Debug for UserByKeyword
Source§impl<'de> Deserialize<'de> for UserByKeyword
impl<'de> Deserialize<'de> for UserByKeyword
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 UserByKeyword
impl PartialEq for UserByKeyword
impl Eq for UserByKeyword
impl StructuralPartialEq for UserByKeyword
Auto Trait Implementations§
impl Freeze for UserByKeyword
impl RefUnwindSafe for UserByKeyword
impl Send for UserByKeyword
impl Sync for UserByKeyword
impl Unpin for UserByKeyword
impl UnwindSafe for UserByKeyword
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