Trait sel4_bitfield_ops::UnsignedPrimInt

source ·
pub trait UnsignedPrimInt:
    UnsignedPrimIntSealed
    + Copy
    + Eq
    + Not<Output = Self>
    + BitAnd<Output = Self>
    + BitOr<Output = Self>
    + BitAndAssign
    + BitOrAssign
    + Shl<usize, Output = Self>
    + Shr<usize, Output = Self>
    + From<bool> {
    const NUM_BITS: usize = _;

    // Provided methods
    fn zero() -> Self { ... }
    fn one() -> Self { ... }
}

Provided Associated Constants§

source

const NUM_BITS: usize = _

Provided Methods§

source

fn zero() -> Self

source

fn one() -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl UnsignedPrimInt for u8

source§

impl UnsignedPrimInt for u16

source§

impl UnsignedPrimInt for u32

source§

impl UnsignedPrimInt for u64

source§

impl UnsignedPrimInt for u128

source§

impl UnsignedPrimInt for usize

Implementors§