pub trait IntoText<M> {
// Required method
fn into_text(self) -> TextSource;
}Expand description
Disjoint-marker conversion (the coherent form of §12.2’s IntoText):
literals, String, Signal<String>, and closures all convert, each under its own marker.