pub trait MatConstIteratorTraitManual: MatConstIteratorTrait {
// Provided methods
fn has_elements(&self) -> bool { ... }
fn current<T: DataType>(&self) -> Result<&T> { ... }
fn current_mut<T: DataType>(&mut self) -> Result<&mut T> { ... }
}Provided Methods§
fn has_elements(&self) -> bool
fn current<T: DataType>(&self) -> Result<&T>
fn current_mut<T: DataType>(&mut self) -> Result<&mut T>
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.