pub struct TrackingUser {
pub id: String,
pub handle: String,
pub name: String,
pub platform: Platform,
pub platform_id: String,
pub avatar_url: String,
pub bio: String,
pub verified: bool,
pub last_sync: DateTime<Utc>,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Fields§
§id: String§handle: String§name: String§platform: Platform§platform_id: String§avatar_url: String§bio: String§verified: bool§last_sync: DateTime<Utc>§created_at: DateTime<Utc>§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for TrackingUser
impl Clone for TrackingUser
Source§fn clone(&self) -> TrackingUser
fn clone(&self) -> TrackingUser
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 TrackingUser
impl Debug for TrackingUser
Source§impl<'de> Deserialize<'de> for TrackingUser
impl<'de> Deserialize<'de> for TrackingUser
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
Auto Trait Implementations§
impl Freeze for TrackingUser
impl RefUnwindSafe for TrackingUser
impl Send for TrackingUser
impl Sync for TrackingUser
impl Unpin for TrackingUser
impl UnsafeUnpin for TrackingUser
impl UnwindSafe for TrackingUser
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