pub struct StepView {
pub id: String,
pub title: String,
pub completed: bool,
}Expand description
A checklist step within a card.
Fields§
§id: StringUnique step identifier.
title: StringStep text/title.
completed: boolWhether the step is completed.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StepView
impl<'de> Deserialize<'de> for StepView
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 Eq for StepView
impl StructuralPartialEq for StepView
Auto Trait Implementations§
impl Freeze for StepView
impl RefUnwindSafe for StepView
impl Send for StepView
impl Sync for StepView
impl Unpin for StepView
impl UnsafeUnpin for StepView
impl UnwindSafe for StepView
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