pub trait FloatBitsExpand: Sized {
type Bits: CubePrimitive;
// Required method
fn __expand_to_bits_method(
self,
scope: &mut Scope,
) -> NativeExpand<Self::Bits>;
}Required Associated Types§
type Bits: CubePrimitive
Required Methods§
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.