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