pub struct UserTrackings {
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>,
}Fields§
§id: String§user_id: String§title: String§start_date: DateTime<Utc>§end_date: DateTime<Utc>§created_at: DateTime<Utc>§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for UserTrackings
impl Clone for UserTrackings
Source§fn clone(&self) -> UserTrackings
fn clone(&self) -> UserTrackings
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 UserTrackings
impl Debug for UserTrackings
Source§impl<'de> Deserialize<'de> for UserTrackings
impl<'de> Deserialize<'de> for UserTrackings
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 UserTrackings
impl RefUnwindSafe for UserTrackings
impl Send for UserTrackings
impl Sync for UserTrackings
impl Unpin for UserTrackings
impl UnsafeUnpin for UserTrackings
impl UnwindSafe for UserTrackings
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