pub trait FormattedStringAppendable {
    fn append(&mut self, s: FormattedString) -> &mut Self;

    fn append_styled<S: ToString>(&mut self, s: S, style: Style) -> &mut Self { ... }
    fn append_plain<S: ToString>(&mut self, s: S) -> &mut Self { ... }
}

Required Methods§

Provided Methods§

source

fn append_styled<S: ToString>(&mut self, s: S, style: Style) -> &mut Self

source

fn append_plain<S: ToString>(&mut self, s: S) -> &mut Self

Implementors§