pub enum ParaNumberingStyle {
Paren,
Parens,
Period,
Plain,
NoNumber,
NewNumber,
}
Expand description
Numbering style used with the numbering paragraphs. Used with ParamNumbering
Variants§
Paren
Follows the number with a right parenthesis
Parens
Encloses the number in parentheses
Period
Follows the number with a period
Plain
Display only the number
NoNumber
Continues a numbered lsit without applying the next number of bullet
NewNumber
Starts a new number using the value of ParaNumbering::Seq(char)
Trait Implementations§
Source§impl Clone for ParaNumberingStyle
impl Clone for ParaNumberingStyle
Source§fn clone(&self) -> ParaNumberingStyle
fn clone(&self) -> ParaNumberingStyle
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 ParaNumberingStyle
impl Debug for ParaNumberingStyle
impl Copy for ParaNumberingStyle
Auto Trait Implementations§
impl Freeze for ParaNumberingStyle
impl RefUnwindSafe for ParaNumberingStyle
impl Send for ParaNumberingStyle
impl Sync for ParaNumberingStyle
impl Unpin for ParaNumberingStyle
impl UnwindSafe for ParaNumberingStyle
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