Enum style::counter_style::SpeakAs
[−]
[src]
pub enum SpeakAs {
Auto,
Bullets,
Numbers,
Words,
Other(CustomIdent),
}Variants
Autoauto
Bulletsbullets
Numbersnumbers
Wordswords
Other(CustomIdent)Trait Implementations
impl Clone for SpeakAs[src]
fn clone(&self) -> SpeakAs[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 SpeakAs[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl ToCss for SpeakAs[src]
fn to_css<W>(&self, dest: &mut W) -> Result where
W: Write, [src]
W: Write,
Serialize self in CSS syntax, writing to dest.
fn to_css_string(&self) -> String[src]
Serialize self in CSS syntax and return a string. Read more
impl Parse for SpeakAs[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