pub struct NewTimeEntry {
pub created_with: String,
pub description: Option<String>,
pub duration: Number,
pub project_id: Option<Number>,
pub start: String,
pub stop: Option<String>,
pub task_id: Option<Number>,
pub workspace_id: Number,
}Fields§
§created_with: String§description: Option<String>§duration: Number§project_id: Option<Number>§start: String§stop: Option<String>§task_id: Option<Number>§workspace_id: NumberTrait Implementations§
Source§impl Debug for NewTimeEntry
impl Debug for NewTimeEntry
Auto Trait Implementations§
impl Freeze for NewTimeEntry
impl RefUnwindSafe for NewTimeEntry
impl Send for NewTimeEntry
impl Sync for NewTimeEntry
impl Unpin for NewTimeEntry
impl UnwindSafe for NewTimeEntry
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