pub trait Stringify {
    fn stringify_to(&self, str: &mut String);

    fn stringify(&self) -> String { ... }
}
Expand description

Converts the given element into a string with all formatting removed.

Required methods

Appends the stringified element to the given string.

Provided methods

Converts the given element into a string with all formatting removed.

Implementors