pub trait FindFirstSet:
CubePrimitive
+ CubeType<ExpandType: FindFirstSetExpand + CubePrimitiveExpand<WithScalar<u32> = NativeExpand<Self::WithScalar<u32>>>>
+ Sized {
// Provided methods
fn find_first_set(self) -> Self::WithScalar<u32> { ... }
fn __expand_find_first_set(
scope: &mut Scope,
x: NativeExpand<Self>,
) -> NativeExpand<Self::WithScalar<u32>> { ... }
}Provided Methods§
fn find_first_set(self) -> Self::WithScalar<u32>
fn __expand_find_first_set( scope: &mut Scope, x: NativeExpand<Self>, ) -> NativeExpand<Self::WithScalar<u32>>
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.