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§
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§
impl<__T: IBitHelper> IBitHelperMethods for __T
Available on crate feature
system-collections-generic-bithelper only.