pub struct PlanItem {
pub id: u32,
pub title: String,
pub detail: Option<String>,
pub status: ItemStatus,
pub note: Option<String>,
pub bound: Option<Binding>,
pub updated: u64,
}Fields§
§id: u32§title: String§detail: Option<String>§status: ItemStatus§note: Option<String>§bound: Option<Binding>§updated: u64Trait Implementations§
Source§impl<'de> Deserialize<'de> for PlanItem
impl<'de> Deserialize<'de> for PlanItem
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
impl StructuralPartialEq for PlanItem
Auto Trait Implementations§
impl Freeze for PlanItem
impl RefUnwindSafe for PlanItem
impl Send for PlanItem
impl Sync for PlanItem
impl Unpin for PlanItem
impl UnsafeUnpin for PlanItem
impl UnwindSafe for PlanItem
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