pub struct TaskListItem {
pub checked: bool,
pub blocks: Vec<Block>,
}Fields§
§checked: bool§blocks: Vec<Block>Trait Implementations§
Source§impl Clone for TaskListItem
impl Clone for TaskListItem
Source§fn clone(&self) -> TaskListItem
fn clone(&self) -> TaskListItem
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 TaskListItem
impl Debug for TaskListItem
Source§impl<'de> Deserialize<'de> for TaskListItem
impl<'de> Deserialize<'de> for TaskListItem
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 PartialEq for TaskListItem
impl PartialEq for TaskListItem
Source§impl Serialize for TaskListItem
impl Serialize for TaskListItem
impl StructuralPartialEq for TaskListItem
Auto Trait Implementations§
impl Freeze for TaskListItem
impl RefUnwindSafe for TaskListItem
impl Send for TaskListItem
impl Sync for TaskListItem
impl Unpin for TaskListItem
impl UnsafeUnpin for TaskListItem
impl UnwindSafe for TaskListItem
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