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.