Skip to main content

IPool_NodeMethods

Trait IPool_NodeMethods 

Source
pub trait IPool_NodeMethods: IPool_Node {
    // Provided methods
    fn on_enter(self) { ... }
    fn on_exit(self) { ... }
    fn get_sort_key(self) -> i32 { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn on_enter(self)

OnEnter() overload

Source

fn on_exit(self)

OnExit() overload

Source

fn get_sort_key(self) -> i32

get_SortKey() overload

Source

fn ctor(self)

.ctor() 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: IPool_Node> IPool_NodeMethods for __T

Available on crate feature app-pool only.