pub trait IQueue_QueueEnumeratorMethods: IQueue_QueueEnumerator {
// Provided methods
fn ctor(self, q: impl Into<Queue>) { ... }
fn clone(self) -> Object { ... }
fn move_next(self) -> bool { ... }
fn get_current(self) -> Object { ... }
fn reset(self) { ... }
}Provided Methods§
Sourcefn get_current(self) -> Object
fn get_current(self) -> Object
get_Current() overload
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§
impl<__T: IQueue_QueueEnumerator> IQueue_QueueEnumeratorMethods for __T
Available on crate feature
system-collections-queue only.