pub trait IntoDyn:
Coordinates
+ LaunchArg
+ CubeType<ExpandType: IntoDynExpand> {
// Provided methods
fn into_dyn(self) -> Sequence<i32> { ... }
fn __expand_into_dyn(
scope: &mut Scope,
this: <Self as CubeType>::ExpandType,
) -> <Sequence<i32> as CubeType>::ExpandType { ... }
}Expand description
Coordinates that can be converted to a dynamic sequence of signed coordinates. Can be used to convert any set of coordinates to a comptime-sized sequence for use with TMA.
Provided Methods§
fn into_dyn(self) -> Sequence<i32>
fn __expand_into_dyn( scope: &mut Scope, this: <Self as CubeType>::ExpandType, ) -> <Sequence<i32> as CubeType>::ExpandType
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.