pub trait Slice<'a, E> {
type Output: 'a;
// Required method
fn slice(&'a self, arg: E) -> Self::Output;
}Expand description
Trait implemented by types which can be sliced
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".