pub enum Bullet {
Point {
items: Vec<Item>,
},
Task {
items: Vec<Item>,
done: bool,
},
}Available on crate feature
markdown only.Expand description
The item of a list.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Bullet
impl !RefUnwindSafe for Bullet
impl Send for Bullet
impl !Sync for Bullet
impl Unpin for Bullet
impl UnsafeUnpin for Bullet
impl UnwindSafe for Bullet
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