Skip to main content

IBitHelper

Trait IBitHelper 

Source
pub trait IBitHelper: IObject {
    // Provided methods
    fn length(self) -> i32 { ... }
    fn set_length(self, value: i32) { ... }
    fn array(self) -> Array<i32> { ... }
    fn set_array(self, value: Array<i32>) { ... }
    fn use_stack_alloc(self) -> bool { ... }
    fn set_use_stack_alloc(self, value: bool) { ... }
}

Provided Methods§

Source

fn length(self) -> i32

Source

fn set_length(self, value: i32)

Source

fn array(self) -> Array<i32>

Source

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

Source

fn use_stack_alloc(self) -> bool

Source

fn set_use_stack_alloc(self, value: bool)

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§