pub struct HandlerParam {
pub name: String,
pub rust_type: String,
pub cuda_type: String,
pub kind: HandlerParamKind,
}Expand description
Information about a handler function parameter.
Fields§
§name: StringParameter name.
rust_type: StringParameter type (Rust).
cuda_type: StringParameter type (CUDA).
kind: HandlerParamKindKind of parameter.
Trait Implementations§
Source§impl Clone for HandlerParam
impl Clone for HandlerParam
Source§fn clone(&self) -> HandlerParam
fn clone(&self) -> HandlerParam
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for HandlerParam
impl RefUnwindSafe for HandlerParam
impl Send for HandlerParam
impl Sync for HandlerParam
impl Unpin for HandlerParam
impl UnwindSafe for HandlerParam
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more