pub trait ArgSettings<R: Runtime>: Send + Sync {
// Required method
fn register(&self, launcher: &mut KernelLauncher<R>);
}
Expand description
Defines the argument settings used to launch a kernel.
Required Methods§
Sourcefn register(&self, launcher: &mut KernelLauncher<R>)
fn register(&self, launcher: &mut KernelLauncher<R>)
Register the information of an argument to the KernelLauncher.