Skip to main content

IBitHelperMethods

Trait IBitHelperMethods 

Source
pub trait IBitHelperMethods: IBitHelper {
    // Provided methods
    fn ctor(self, bit_array: impl Into<Array<i32>>, length: impl Into<i32>) { ... }
    fn mark_bit(self, bit_position: impl Into<i32>) { ... }
    fn is_marked(self, bit_position: impl Into<i32>) -> bool { ... }
}

Provided Methods§

Source

fn ctor(self, bit_array: impl Into<Array<i32>>, length: impl Into<i32>)

.ctor(::unity::Array<i32>, i32) overload

Source

fn mark_bit(self, bit_position: impl Into<i32>)

MarkBit(i32) overload

Source

fn is_marked(self, bit_position: impl Into<i32>) -> bool

IsMarked(i32) 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: IBitHelper> IBitHelperMethods for __T

Available on crate feature system-collections-generic-bithelper only.