pub trait SliceExt<'a, T> {
// Required method
fn trim_simple_ws(self) -> Self;
}Required Methods§
Sourcefn trim_simple_ws(self) -> Self
fn trim_simple_ws(self) -> Self
Returns a subslice with leading and trailing flanking white space removed.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".