pub struct DueDateTime {
pub string: String,
pub date: String,
pub recurring: bool,
pub datetime: Option<String>,
pub timezone: Option<String>,
}
Fields§
§string: String
Human defined date in arbitrary format.
date: String
Date in format YYYY-MM-DD
corrected to user’s time zone.
recurring: bool
§datetime: Option<String>
Only returned if exact due time set (i.e. it’s not a whole-day task), in UTC.
timezone: Option<String>
Only returned if exact due time set, user’s time zone definition either in tzdata-compatible format (“Europe/Berlin”) or as a string specifying east of UTC offset as “UTC±HH:MM” (i.e. “UTC-01:00”).
Trait Implementations§
Source§impl Clone for DueDateTime
impl Clone for DueDateTime
Source§fn clone(&self) -> DueDateTime
fn clone(&self) -> DueDateTime
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 DueDateTime
impl Debug for DueDateTime
Source§impl Default for DueDateTime
impl Default for DueDateTime
Source§fn default() -> DueDateTime
fn default() -> DueDateTime
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DueDateTime
impl<'de> Deserialize<'de> for DueDateTime
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 Ord for DueDateTime
impl Ord for DueDateTime
Source§fn cmp(&self, other: &DueDateTime) -> Ordering
fn cmp(&self, other: &DueDateTime) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DueDateTime
impl PartialEq for DueDateTime
Source§impl PartialOrd for DueDateTime
impl PartialOrd for DueDateTime
Source§impl Serialize for DueDateTime
impl Serialize for DueDateTime
impl Eq for DueDateTime
impl StructuralPartialEq for DueDateTime
Auto Trait Implementations§
impl Freeze for DueDateTime
impl RefUnwindSafe for DueDateTime
impl Send for DueDateTime
impl Sync for DueDateTime
impl Unpin for DueDateTime
impl UnwindSafe for DueDateTime
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.