pub enum System {
Cyclic,
Numeric,
Alphabetic,
Symbolic,
Additive,
Fixed {
first_symbol_value: Option<i32>,
},
Extends(CounterStyleIdent),
}Expand description
Variants§
Cyclic
‘cyclic’
Numeric
‘numeric’
Alphabetic
‘alphabetic’
Symbolic
‘symbolic’
Additive
‘additive’
Fixed
‘fixed
Extends(CounterStyleIdent)
‘extends
Trait Implementations§
Source§impl Ord for System
impl Ord for System
Source§impl PartialOrd for System
impl PartialOrd for System
impl Eq for System
impl StructuralPartialEq for System
Auto Trait Implementations§
impl Freeze for System
impl RefUnwindSafe for System
impl Send for System
impl Sync for System
impl Unpin for System
impl UnwindSafe for System
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