Trait ReverseBits

Source
pub trait ReverseBits: CubePrimitive + Sized {
    // Provided methods
    fn reverse_bits(x: Self) -> Self { ... }
    fn __expand_reverse_bits(
        scope: &mut Scope,
        x: Self::ExpandType,
    ) -> ExpandElementTyped<Self> { ... }
}

Provided Methods§

Source

fn reverse_bits(x: Self) -> Self

Source

fn __expand_reverse_bits( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<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 ReverseBits for i8

Source§

impl ReverseBits for i16

Source§

impl ReverseBits for i32

Source§

impl ReverseBits for i64

Source§

impl ReverseBits for u8

Source§

impl ReverseBits for u16

Source§

impl ReverseBits for u32

Source§

impl ReverseBits for u64

Implementors§