pub trait EntriesExt {
type T;
type Entries<'a, T: 'a>;
// Required method
fn entries<'a, R, F, Ret>(&'a mut self, range: R, f: F) -> Ret
where R: RangeBounds<usize>,
F: FnOnce(&mut Self::Entries<'a, Self::T>) -> Ret;
}Required Associated Types§
Required Methods§
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.