Enum jotdown::OrderedListStyle
source · pub enum OrderedListStyle {
Period,
Paren,
ParenParen,
}Expand description
Style of an ordered list.
Variants§
Period
Number is followed by a period, e.g. 1..
Paren
Number is followed by a closing parenthesis, e.g. 1).
ParenParen
Number is enclosed by parentheses, e.g. (1).
Trait Implementations§
source§impl Clone for OrderedListStyle
impl Clone for OrderedListStyle
source§fn clone(&self) -> OrderedListStyle
fn clone(&self) -> OrderedListStyle
Returns a copy 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 OrderedListStyle
impl Debug for OrderedListStyle
source§impl PartialEq<OrderedListStyle> for OrderedListStyle
impl PartialEq<OrderedListStyle> for OrderedListStyle
source§fn eq(&self, other: &OrderedListStyle) -> bool
fn eq(&self, other: &OrderedListStyle) -> bool
This method tests for
self and other values to be equal, and is used
by ==.