pub trait ToThinString {
// Required method
fn to_thin_string(&self) -> ThinString;
}Required Methods§
fn to_thin_string(&self) -> ThinString
Implementors§
impl<T: Display + ?Sized> ToThinString for T
Available on non-crate feature
nightly only.