pub enum ParaNumbering {
None,
Bullet,
Arabic,
LcLetter,
LcRoman,
UcLetter,
UcRoman,
Seq(char),
}
Expand description
Options used for bulleted or numbered paragraphs.
Variants§
None
No paragraph numbering or bullets.
Bullet
Insert a bullet at the beginning of each selected paragraph.
Arabic
Use Arabic numbers (0, 1, 2, and so on).
LcLetter
Use lowercase letters (a, b, c, and so on).
LcRoman
Use lowercase Roman letters (i, ii, iii, and so on).
UcLetter
Use uppercase letters (A, B, C, and so on).
UcRoman
Use uppercase Roman letters (I, II, III, and so on).
Seq(char)
Uses a sequence of characters beginning with the Unicode character specified
Trait Implementations§
Source§impl Clone for ParaNumbering
impl Clone for ParaNumbering
Source§fn clone(&self) -> ParaNumbering
fn clone(&self) -> ParaNumbering
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 ParaNumbering
impl Debug for ParaNumbering
impl Copy for ParaNumbering
Auto Trait Implementations§
impl Freeze for ParaNumbering
impl RefUnwindSafe for ParaNumbering
impl Send for ParaNumbering
impl Sync for ParaNumbering
impl Unpin for ParaNumbering
impl UnwindSafe for ParaNumbering
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