TextOp

Trait TextOp 

Source
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§

Source

fn concat<U: Text>(self, other: U) -> OpText<T, U>

concat text

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.

Implementors§

Source§

impl<T: Text> TextOp<T> for T