pub trait RemoveImpl<Input, Index> {
type Output;
// Required method
fn impl_remove(input: Input, index: Index) -> Self::Output;
}
Expand description
Implements element removal from a vector.
Required Associated Types§
Required Methods§
fn impl_remove(input: Input, index: Index) -> Self::Output
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.