IntoDyn

Trait IntoDyn 

Source
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§

Source

fn into_dyn(self) -> Sequence<i32>

Source

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.

Implementations on Foreign Types§

Source§

impl IntoDyn for (i32, i32)

Source§

impl IntoDyn for (i32, i32, i32)

Source§

impl IntoDyn for (i32, i32, i32, i32)

Source§

impl IntoDyn for (i32, i32, i32, i32, i32)

Source§

impl IntoDyn for (i32, i32, i32, i32, i32, i32)

Source§

impl IntoDyn for (i32, i32, i32, i32, i32, i32, i32)

Source§

impl IntoDyn for (i32, i32, i32, i32, i32, i32, i32, i32)

Source§

impl IntoDyn for (i32, i32, i32, i32, i32, i32, i32, i32, i32)

Source§

impl IntoDyn for (i32, i32, i32, i32, i32, i32, i32, i32, i32, i32)

Source§

impl IntoDyn for (i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32)

Source§

impl IntoDyn for (i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32)

Source§

impl IntoDyn for (u32, u32)

Source§

impl IntoDyn for (u32, u32, u32)

Source§

impl IntoDyn for (u32, u32, u32, u32)

Source§

impl IntoDyn for (u32, u32, u32, u32, u32)

Source§

impl IntoDyn for (u32, u32, u32, u32, u32, u32)

Source§

impl IntoDyn for (u32, u32, u32, u32, u32, u32, u32)

Source§

impl IntoDyn for (u32, u32, u32, u32, u32, u32, u32, u32)

Source§

impl IntoDyn for (u32, u32, u32, u32, u32, u32, u32, u32, u32)

Source§

impl IntoDyn for (u32, u32, u32, u32, u32, u32, u32, u32, u32, u32)

Source§

impl IntoDyn for (u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32)

Source§

impl IntoDyn for (u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32, u32)

Source§

impl IntoDyn for Sequence<i32>

Source§

impl IntoDyn for Sequence<u32>

Implementors§