pub struct ChecklistItemStateProps {
pub title: String,
pub status: TaskStatus,
pub task_ids: Vec<ThingsId>,
pub sort_index: i32,
}Fields§
§title: String§status: TaskStatus§task_ids: Vec<ThingsId>§sort_index: i32Trait Implementations§
Source§impl Clone for ChecklistItemStateProps
impl Clone for ChecklistItemStateProps
Source§fn clone(&self) -> ChecklistItemStateProps
fn clone(&self) -> ChecklistItemStateProps
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 ChecklistItemStateProps
impl Debug for ChecklistItemStateProps
Source§impl Default for ChecklistItemStateProps
impl Default for ChecklistItemStateProps
Source§fn default() -> ChecklistItemStateProps
fn default() -> ChecklistItemStateProps
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChecklistItemStateProps
impl<'de> Deserialize<'de> for ChecklistItemStateProps
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 From<ChecklistItemPatch> for ChecklistItemStateProps
impl From<ChecklistItemPatch> for ChecklistItemStateProps
Source§fn from(patch: ChecklistItemPatch) -> Self
fn from(patch: ChecklistItemPatch) -> Self
Converts to this type from the input type.
Source§impl From<ChecklistItemProps> for ChecklistItemStateProps
impl From<ChecklistItemProps> for ChecklistItemStateProps
Source§fn from(props: ChecklistItemProps) -> Self
fn from(props: ChecklistItemProps) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ChecklistItemStateProps
impl PartialEq for ChecklistItemStateProps
Source§impl Serialize for ChecklistItemStateProps
impl Serialize for ChecklistItemStateProps
impl StructuralPartialEq for ChecklistItemStateProps
Auto Trait Implementations§
impl Freeze for ChecklistItemStateProps
impl RefUnwindSafe for ChecklistItemStateProps
impl Send for ChecklistItemStateProps
impl Sync for ChecklistItemStateProps
impl Unpin for ChecklistItemStateProps
impl UnsafeUnpin for ChecklistItemStateProps
impl UnwindSafe for ChecklistItemStateProps
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