pub trait IntoKernelParamStorage {
type Storage: KernelParamStorage;
// Required method
fn into_kernel_param_storage(self) -> Self::Storage;
}Expand description
Convert a launch argument into storage that lives until cuLaunchKernel runs.
Required Associated Types§
Required Methods§
fn into_kernel_param_storage(self) -> Self::Storage
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".