Skip to main content

FloatBitsExpand

Trait FloatBitsExpand 

Source
pub trait FloatBitsExpand: Sized {
    type Bits: CubePrimitive;

    // Required method
    fn __expand_to_bits_method(
        self,
        scope: &mut Scope,
    ) -> NativeExpand<Self::Bits>;
}

Required Associated Types§

Required Methods§

Source

fn __expand_to_bits_method(self, scope: &mut Scope) -> NativeExpand<Self::Bits>

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§