Trait cssparser::serializer::ToCss
source · pub trait ToCss {
// Required method
fn to_css<W>(&self, dest: &mut W) -> Result
where W: Write;
// Provided method
fn to_css_string(&self) -> String { ... }
}
Expand description
Trait for things the can serialize themselves in CSS syntax.
Required Methods§
Provided Methods§
sourcefn to_css_string(&self) -> String
fn to_css_string(&self) -> String
Serialize self
in CSS syntax and return a string.
(This is a convenience wrapper for to_css
and probably should not be overridden.)
Object Safety§
This trait is not object safe.