pub struct InsightUserInformation {
pub id: Option<String>,
pub first_name: Option<String>,
pub last_name: Option<String>,
pub nickname: Option<String>,
pub username: Option<String>,
pub last_picture_update: Option<String>,
pub create_at: Option<i64>,
}
Fields§
§id: Option<String>
§first_name: Option<String>
§last_name: Option<String>
§nickname: Option<String>
§username: Option<String>
§last_picture_update: Option<String>
§create_at: Option<i64>
Implementations§
Source§impl InsightUserInformation
impl InsightUserInformation
pub fn new() -> InsightUserInformation
Trait Implementations§
Source§impl Clone for InsightUserInformation
impl Clone for InsightUserInformation
Source§fn clone(&self) -> InsightUserInformation
fn clone(&self) -> InsightUserInformation
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for InsightUserInformation
impl Debug for InsightUserInformation
Source§impl Default for InsightUserInformation
impl Default for InsightUserInformation
Source§fn default() -> InsightUserInformation
fn default() -> InsightUserInformation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InsightUserInformation
impl<'de> Deserialize<'de> for InsightUserInformation
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 InsightUserInformation
impl PartialEq for InsightUserInformation
Source§impl Serialize for InsightUserInformation
impl Serialize for InsightUserInformation
impl StructuralPartialEq for InsightUserInformation
Auto Trait Implementations§
impl Freeze for InsightUserInformation
impl RefUnwindSafe for InsightUserInformation
impl Send for InsightUserInformation
impl Sync for InsightUserInformation
impl Unpin for InsightUserInformation
impl UnwindSafe for InsightUserInformation
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