pub enum ListBullet {
Dash,
Asterisk,
Plus,
PlusExpand,
Ordered(usize),
}Expand description
List bullet type.
Variants§
Dash
Dash bullet: -
Asterisk
Asterisk bullet: *
Plus
Plus bullet: +
PlusExpand
Expandable plus: +—
Ordered(usize)
Ordered number
Implementations§
Source§impl ListBullet
impl ListBullet
Trait Implementations§
Source§impl Clone for ListBullet
impl Clone for ListBullet
Source§fn clone(&self) -> ListBullet
fn clone(&self) -> ListBullet
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 ListBullet
impl Debug for ListBullet
Source§impl PartialEq for ListBullet
impl PartialEq for ListBullet
impl Copy for ListBullet
impl Eq for ListBullet
impl StructuralPartialEq for ListBullet
Auto Trait Implementations§
impl Freeze for ListBullet
impl RefUnwindSafe for ListBullet
impl Send for ListBullet
impl Sync for ListBullet
impl Unpin for ListBullet
impl UnwindSafe for ListBullet
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