pub trait ToThinString {
// Required method
fn to_thin_string(&self) -> ThinString;
}Required Methods§
fn to_thin_string(&self) -> ThinString
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
impl<T: Display + ?Sized> ToThinString for T
Available on non-crate feature
nightly only.