pub struct Checklist {
pub title: String,
pub items: ChecklistItems,
}Fields§
§title: String§items: ChecklistItemsImplementations§
Source§impl Checklist
impl Checklist
pub fn find_path_mut( &mut self, path: Path, ) -> Option<(&mut ChecklistItems, usize)>
pub fn find_path(&self, path: Path) -> Option<(ChecklistItems, usize)>
pub fn append(&mut self, path: Path, new_item: ChecklistItem) -> Result<()>
pub fn path(&self, path: Path) -> Option<ChecklistItem>
Trait Implementations§
Source§impl Ord for Checklist
impl Ord for Checklist
Source§impl PartialOrd for Checklist
impl PartialOrd for Checklist
impl Eq for Checklist
impl StructuralPartialEq for Checklist
Auto Trait Implementations§
impl Freeze for Checklist
impl RefUnwindSafe for Checklist
impl Send for Checklist
impl Sync for Checklist
impl Unpin for Checklist
impl UnwindSafe for Checklist
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string() Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read more