pub struct StatusIndexItem {
pub id: String,
pub title: String,
pub kind: RecordKind,
pub priority: TaskPriority,
pub parent_id: Option<String>,
pub updated_at: DateTime<Utc>,
}Fields§
§id: String§title: String§kind: RecordKind§priority: TaskPriority§parent_id: Option<String>§updated_at: DateTime<Utc>Trait Implementations§
Source§impl Clone for StatusIndexItem
impl Clone for StatusIndexItem
Source§fn clone(&self) -> StatusIndexItem
fn clone(&self) -> StatusIndexItem
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 StatusIndexItem
impl Debug for StatusIndexItem
Source§impl<'de> Deserialize<'de> for StatusIndexItem
impl<'de> Deserialize<'de> for StatusIndexItem
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 StatusIndexItem
impl RefUnwindSafe for StatusIndexItem
impl Send for StatusIndexItem
impl Sync for StatusIndexItem
impl Unpin for StatusIndexItem
impl UnsafeUnpin for StatusIndexItem
impl UnwindSafe for StatusIndexItem
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