pub trait IIterator_Impl<T>: IUnknownImplwhere
T: RuntimeType + 'static,{
// Required methods
fn Current(&self) -> Result<T>;
fn HasCurrent(&self) -> Result<bool>;
fn MoveNext(&self) -> Result<bool>;
fn GetMany(&self, items: &mut [<T as Type<T>>::Default]) -> Result<u32>;
}Required Methods§
fn Current(&self) -> Result<T>
fn HasCurrent(&self) -> Result<bool>
fn MoveNext(&self) -> Result<bool>
fn GetMany(&self, items: &mut [<T as Type<T>>::Default]) -> Result<u32>
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.