pub trait RawText {
// Required methods
fn raw(&self) -> String;
fn raw_ref(&self) -> &str;
}Expand description
Support for converting a text object into a raw, unstyled string
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".