pub trait CssWriter {
    fn write_punct(&mut self, span: Option<Span>, punct: &str) -> Result;
fn write_space(&mut self) -> Result;
fn write_raw(&mut self, span: Option<Span>, text: &str) -> Result;
fn write_str(&mut self, span: Option<Span>, text: &str) -> Result;
fn write_raw_char(&mut self, span: Option<Span>, c: char) -> Result;
fn write_newline(&mut self) -> Result;
fn increase_indent(&mut self);
fn decrease_indent(&mut self); }

Required methods

punct should not contain newline.

Implementations on Foreign Types

Implementors