pub struct StartTimeEntry {
pub workspace_id: i64,
pub start: DateTime<Utc>,
pub duration: i64,
pub created_with: String,
pub description: Option<String>,
pub project_id: Option<i64>,
pub task_id: Option<i64>,
pub billable: Option<bool>,
pub tags: Option<Vec<String>>,
pub tag_ids: Option<Vec<i64>>,
}Fields§
§workspace_id: i64§start: DateTime<Utc>§duration: i64§created_with: String§description: Option<String>§project_id: Option<i64>§task_id: Option<i64>§billable: Option<bool>§tag_ids: Option<Vec<i64>>Implementations§
Trait Implementations§
Source§impl Clone for StartTimeEntry
impl Clone for StartTimeEntry
Source§fn clone(&self) -> StartTimeEntry
fn clone(&self) -> StartTimeEntry
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 StartTimeEntry
impl Debug for StartTimeEntry
Auto Trait Implementations§
impl Freeze for StartTimeEntry
impl RefUnwindSafe for StartTimeEntry
impl Send for StartTimeEntry
impl Sync for StartTimeEntry
impl Unpin for StartTimeEntry
impl UnsafeUnpin for StartTimeEntry
impl UnwindSafe for StartTimeEntry
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