pub struct TimeEntry {
pub id: i64,
pub task_id: i64,
pub started_at: String,
pub stopped_at: Option<String>,
}Fields§
§id: i64§task_id: i64§started_at: String§stopped_at: Option<String>Trait Implementations§
impl StructuralPartialEq for TimeEntry
Auto Trait Implementations§
impl Freeze for TimeEntry
impl RefUnwindSafe for TimeEntry
impl Send for TimeEntry
impl Sync for TimeEntry
impl Unpin for TimeEntry
impl UnsafeUnpin for TimeEntry
impl UnwindSafe for TimeEntry
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