Skip to main content

IIterator_1

Trait IIterator_1 

Source
pub trait IIterator_1<T0: ClassIdentity>: IObject {
    // Provided methods
    fn thread_id(self) -> i32 { ... }
    fn set_thread_id(self, value: i32) { ... }
    fn state(self) -> i32 { ... }
    fn set_state(self, value: i32) { ... }
    fn current(self) -> T0 { ... }
    fn set_current(self, value: T0) { ... }
}

Provided Methods§

Source

fn thread_id(self) -> i32

Source

fn set_thread_id(self, value: i32)

Source

fn state(self) -> i32

Source

fn set_state(self, value: i32)

Source

fn current(self) -> T0

Source

fn set_current(self, value: T0)

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.

Implementors§