Enum style::counter_style::System
[−]
[src]
pub enum System { Cyclic, Numeric, Alphabetic, Symbolic, Additive, Fixed { first_symbol_value: Option<i32>, }, Extends(CustomIdent), }
Variants
Cyclic
'cyclic'
Numeric
'numeric'
Alphabetic
'alphabetic'
Symbolic
'symbolic'
Additive
'additive'
Fixed
'fixed
Fields of Fixed
first_symbol_value: Option<i32> | ' |
Extends(CustomIdent)
'extends
Trait Implementations
impl Clone for System
[src]
fn clone(&self) -> System
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for System
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Parse for System
[src]
fn parse<'i, 't>(
_context: &ParserContext,
input: &mut Parser<'i, 't>
) -> Result<Self, ParseError<'i>>
[src]
_context: &ParserContext,
input: &mut Parser<'i, 't>
) -> Result<Self, ParseError<'i>>
Parse a value of this type. Read more