pub struct TimeTrackingEntryCompact {
pub asana_resource: AsanaResource,
pub created_by: Option<UserCompact>,
pub duration_minutes: Option<i64>,
pub entered_on: Option<NaiveDate>,
}
Fields§
§asana_resource: AsanaResource
A generic Asana Resource, containing a globally unique identifier.
created_by: Option<UserCompact>
§duration_minutes: Option<i64>
Time in minutes tracked by the entry.
entered_on: Option<NaiveDate>
The day that this entry is logged on.
Trait Implementations§
Source§impl Clone for TimeTrackingEntryCompact
impl Clone for TimeTrackingEntryCompact
Source§fn clone(&self) -> TimeTrackingEntryCompact
fn clone(&self) -> TimeTrackingEntryCompact
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 TimeTrackingEntryCompact
impl Debug for TimeTrackingEntryCompact
Source§impl Default for TimeTrackingEntryCompact
impl Default for TimeTrackingEntryCompact
Source§fn default() -> TimeTrackingEntryCompact
fn default() -> TimeTrackingEntryCompact
Returns the “default value” for a type. Read more
Source§impl Deref for TimeTrackingEntryCompact
impl Deref for TimeTrackingEntryCompact
Source§impl DerefMut for TimeTrackingEntryCompact
impl DerefMut for TimeTrackingEntryCompact
Source§impl<'de> Deserialize<'de> for TimeTrackingEntryCompact
impl<'de> Deserialize<'de> for TimeTrackingEntryCompact
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
Source§impl Display for TimeTrackingEntryCompact
impl Display for TimeTrackingEntryCompact
Auto Trait Implementations§
impl Freeze for TimeTrackingEntryCompact
impl RefUnwindSafe for TimeTrackingEntryCompact
impl Send for TimeTrackingEntryCompact
impl Sync for TimeTrackingEntryCompact
impl Unpin for TimeTrackingEntryCompact
impl UnwindSafe for TimeTrackingEntryCompact
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