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