Trait Slice
pub trait Slice<R> {
// Required method
fn slice(&self, range: R) -> Self;
}
Expand description
Slicing operations using ranges.
This trait is loosely based on
Index
, but can actually return
something else than a &[T]
or &str
Required Methods§
fn slice(&self, range: R) -> Self
fn slice(&self, range: R) -> Self
Slices self according to the range argument
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.