pub struct UpdateTimeTrackingEntryRequestBody {
pub duration_minutes: i64,
pub entered_on: NaiveDate,
}
Fields§
§duration_minutes: i64
Optional. Time in minutes tracked by the entry
entered_on: NaiveDate
Optional. The day that this entry is logged on. Defaults to today if no day specified
Trait Implementations§
Source§impl Clone for UpdateTimeTrackingEntryRequestBody
impl Clone for UpdateTimeTrackingEntryRequestBody
Source§fn clone(&self) -> UpdateTimeTrackingEntryRequestBody
fn clone(&self) -> UpdateTimeTrackingEntryRequestBody
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 Default for UpdateTimeTrackingEntryRequestBody
impl Default for UpdateTimeTrackingEntryRequestBody
Source§fn default() -> UpdateTimeTrackingEntryRequestBody
fn default() -> UpdateTimeTrackingEntryRequestBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateTimeTrackingEntryRequestBody
impl<'de> Deserialize<'de> for UpdateTimeTrackingEntryRequestBody
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 UpdateTimeTrackingEntryRequestBody
impl RefUnwindSafe for UpdateTimeTrackingEntryRequestBody
impl Send for UpdateTimeTrackingEntryRequestBody
impl Sync for UpdateTimeTrackingEntryRequestBody
impl Unpin for UpdateTimeTrackingEntryRequestBody
impl UnwindSafe for UpdateTimeTrackingEntryRequestBody
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