Skip to main content

IQueue

Trait IQueue 

Source
pub trait IQueue: IObject {
Show 14 methods // Provided methods fn array(self) -> Array<Object> { ... } fn set_array(self, value: Array<Object>) { ... } fn head(self) -> i32 { ... } fn set_head(self, value: i32) { ... } fn tail(self) -> i32 { ... } fn set_tail(self, value: i32) { ... } fn size(self) -> i32 { ... } fn set_size(self, value: i32) { ... } fn grow_factor(self) -> i32 { ... } fn set_grow_factor(self, value: i32) { ... } fn version(self) -> i32 { ... } fn set_version(self, value: i32) { ... } fn sync_root(self) -> IlInstance { ... } fn set_sync_root(self, value: IlInstance) { ... }
}

Provided Methods§

Source

fn array(self) -> Array<Object>

Source

fn set_array(self, value: Array<Object>)

Source

fn head(self) -> i32

Source

fn set_head(self, value: i32)

Source

fn tail(self) -> i32

Source

fn set_tail(self, value: i32)

Source

fn size(self) -> i32

Source

fn set_size(self, value: i32)

Source

fn grow_factor(self) -> i32

Source

fn set_grow_factor(self, value: i32)

Source

fn version(self) -> i32

Source

fn set_version(self, value: i32)

Source

fn sync_root(self) -> IlInstance

Source

fn set_sync_root(self, value: IlInstance)

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§