pub trait NthBitLogic {
// Required method
fn nth_bit(self, n: Int) -> bool;
}Expand description
Trait for the nth bit of a bitvector in logic code.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".