pub struct Item<'a> {
pub bullet: BulletKind,
pub counter_set: Option<&'a str>,
pub check_box: Option<CheckBox>,
pub tag: Option<&'a str>,
pub children: Vec<NodeID>,
}
Fields§
§bullet: BulletKind
§counter_set: Option<&'a str>
§check_box: Option<CheckBox>
§tag: Option<&'a str>
§children: Vec<NodeID>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Item<'a>
impl<'a> RefUnwindSafe for Item<'a>
impl<'a> Send for Item<'a>
impl<'a> Sync for Item<'a>
impl<'a> Unpin for Item<'a>
impl<'a> UnwindSafe for Item<'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