pub struct Tracking {
pub id: String,
pub user_id: String,
pub title: String,
pub start_date: DateTime<Utc>,
pub end_date: DateTime<Utc>,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub user: TrackingUser,
pub stats: Option<TrackingStats>,
}Fields§
§id: String§user_id: String§title: String§start_date: DateTime<Utc>§end_date: DateTime<Utc>§created_at: DateTime<Utc>§updated_at: DateTime<Utc>§user: TrackingUser§stats: Option<TrackingStats>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Tracking
impl<'de> Deserialize<'de> for Tracking
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 Tracking
impl RefUnwindSafe for Tracking
impl Send for Tracking
impl Sync for Tracking
impl Unpin for Tracking
impl UnsafeUnpin for Tracking
impl UnwindSafe for Tracking
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