Bit

Trait Bit 

Source
pub trait Bit:
    Clone
    + Copy
    + PartialEq
    + Debug {
    const LOW: Self;
    const HIGH: Self;
}
Expand description

Abstract “bit” type used in MatrixMap.

Required Associated Constants§

Source

const LOW: Self

Source

const HIGH: Self

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.

Implementations on Foreign Types§

Source§

impl Bit for bool

Source§

const LOW: bool = false

Source§

const HIGH: bool = true

Implementors§