Skip to main content

IStack_StackEnumeratorMethods

Trait IStack_StackEnumeratorMethods 

Source
pub trait IStack_StackEnumeratorMethods: IStack_StackEnumerator {
    // Provided methods
    fn ctor(self, stack: impl Into<Stack>) { ... }
    fn clone(self) -> Object { ... }
    fn move_next(self) -> bool { ... }
    fn get_current(self) -> Object { ... }
    fn reset(self) { ... }
}

Provided Methods§

Source

fn ctor(self, stack: impl Into<Stack>)

.ctor(crate::system::collections::stack::Stack) overload

Source

fn clone(self) -> Object

Clone() overload

Source

fn move_next(self) -> bool

MoveNext() overload

Source

fn get_current(self) -> Object

get_Current() overload

Source

fn reset(self)

Reset() 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§

Source§

impl<__T: IStack_StackEnumerator> IStack_StackEnumeratorMethods for __T

Available on crate feature system-collections-stack only.