Skip to main content

ILinkedListNodeCache_1Methods

Trait ILinkedListNodeCache_1Methods 

Source
pub trait ILinkedListNodeCache_1Methods<T0: ClassIdentity>: ClassIdentity {
    // Provided methods
    fn acquire(self, val: T0) -> LinkedListNode_1<T0>
       where Self: Sized { ... }
    fn release(self, node: LinkedListNode_1<T0>)
       where Self: Sized { ... }
    fn get_created_node_count(self) -> i32
       where Self: Sized { ... }
    fn get_cached_node_count(self) -> i32
       where Self: Sized { ... }
    fn ctor(self)
       where Self: Sized { ... }
}

Provided Methods§

Source

fn acquire(self, val: T0) -> LinkedListNode_1<T0>
where Self: Sized,

Source

fn release(self, node: LinkedListNode_1<T0>)
where Self: Sized,

Source

fn get_created_node_count(self) -> i32
where Self: Sized,

Source

fn get_cached_node_count(self) -> i32
where Self: Sized,

Source

fn ctor(self)
where Self: Sized,

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§