pub struct TimeIndexItem {
pub id: String,
pub title: String,
pub kind: RecordKind,
pub status: RecordStatus,
pub priority: TaskPriority,
pub anchor_at: DateTime<Utc>,
pub due_at: Option<DateTime<Utc>>,
pub starts_at: Option<DateTime<Utc>>,
}Fields§
§id: String§title: String§kind: RecordKind§status: RecordStatus§priority: TaskPriority§anchor_at: DateTime<Utc>§due_at: Option<DateTime<Utc>>§starts_at: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for TimeIndexItem
impl Clone for TimeIndexItem
Source§fn clone(&self) -> TimeIndexItem
fn clone(&self) -> TimeIndexItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TimeIndexItem
impl Debug for TimeIndexItem
Source§impl<'de> Deserialize<'de> for TimeIndexItem
impl<'de> Deserialize<'de> for TimeIndexItem
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 TimeIndexItem
impl RefUnwindSafe for TimeIndexItem
impl Send for TimeIndexItem
impl Sync for TimeIndexItem
impl Unpin for TimeIndexItem
impl UnsafeUnpin for TimeIndexItem
impl UnwindSafe for TimeIndexItem
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