pub struct UserById {
pub id: u64,
pub name: String,
pub display_name: String,
pub is_verified: bool,
}Fields§
§id: u64§name: String§display_name: String§is_verified: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for UserById
impl<'de> Deserialize<'de> for UserById
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
impl Eq for UserById
impl StructuralPartialEq for UserById
Auto Trait Implementations§
impl Freeze for UserById
impl RefUnwindSafe for UserById
impl Send for UserById
impl Sync for UserById
impl Unpin for UserById
impl UnwindSafe for UserById
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