pub struct HandlerParam {
pub name: String,
pub kind: HandlerParamKind,
pub wgsl_type: String,
}Expand description
Handler parameter description.
Fields§
§name: StringParameter name.
kind: HandlerParamKindParameter kind.
wgsl_type: StringWGSL type string.
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