pub enum Bullet {
Inherited,
None,
Char(String),
AutoNumber {
scheme: String,
start_at: u32,
},
Picture,
}Expand description
Bullet setting of a paragraph (21.1.2.4).
Variants§
Inherited
Nothing specified on the paragraph; inherited from the list style.
None
Char(String)
AutoNumber
Picture
Trait Implementations§
impl Eq for Bullet
impl StructuralPartialEq for Bullet
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