Enum style::counter_style::System [] [src]

pub enum System {
    Cyclic,
    Numeric,
    Alphabetic,
    Symbolic,
    Additive,
    Fixed {
        first_symbol_value: Option<i32>,
    },
    Extends(CustomIdent),
}

https://drafts.csswg.org/css-counter-styles/#counter-style-system

Variants

'cyclic'

'numeric'

'alphabetic'

'symbolic'

'additive'

'fixed ?'

Fields of Fixed

'?'

'extends '

Trait Implementations

impl Clone for System
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for System
[src]

[src]

Formats the value using the given formatter. Read more

impl Parse for System
[src]

[src]

Parse a value of this type. Read more

impl ToCss for System
[src]

[src]

Serialize self in CSS syntax, writing to dest.

[src]

Serialize self in CSS syntax and return a string. Read more