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 { ... }
}