LaunchLayout

Trait LaunchLayout 

Source
pub trait LaunchLayout: LaunchArg + Sealed {
    type SourceCoordinates: Coordinates;
    type Coordinates: Coordinates;

    // Required method
    fn apply<E: CubePrimitive, V: ViewOperationsMut<E, Self::SourceCoordinates> + 'static, IO: SliceVisibility>(
        value: <Self as CubeType>::ExpandType,
        view: V::ExpandType,
    ) -> ViewExpand<E, Self::Coordinates, IO>;
}

Required Associated Types§

Required Methods§

Source

fn apply<E: CubePrimitive, V: ViewOperationsMut<E, Self::SourceCoordinates> + 'static, IO: SliceVisibility>( value: <Self as CubeType>::ExpandType, view: V::ExpandType, ) -> ViewExpand<E, Self::Coordinates, IO>

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<L0: Layout + CubeType<ExpandType: VirtualLayoutOperationsExpand<L0::Coordinates, L0::SourceCoordinates>> + LaunchArg, L1: Layout<SourceCoordinates = L0::Coordinates> + CubeType<ExpandType: VirtualLayoutOperationsExpand<L1::Coordinates, L1::SourceCoordinates>> + LaunchArg> LaunchLayout for (L0, L1)

Implementors§