pub struct ListItem<'a> { /* private fields */ }Expand description
An item in a Checklist. To complete it, find a document whose hash matches the one that was
provided alongside this item, then feed that document to the check
function of this item. If the check fails, checking should be halted and the checklist should
be discarded.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ListItem<'a>
impl<'a> RefUnwindSafe for ListItem<'a>
impl<'a> Send for ListItem<'a>
impl<'a> Sync for ListItem<'a>
impl<'a> Unpin for ListItem<'a>
impl<'a> UnwindSafe for ListItem<'a>
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