pub trait TextOp<T: Any> {
// Required method
fn concat<U: Text>(self, other: U) -> OpText<T, U>;
}Expand description
Operations on text-like values.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.