pub struct ParamInput {
pub name: String,
pub param_type: DynType,
}Expand description
Represents a parameter input with a name and dynamic type
Fields§
§name: String§param_type: DynTypeTrait Implementations§
Source§impl Clone for ParamInput
impl Clone for ParamInput
Source§fn clone(&self) -> ParamInput
fn clone(&self) -> ParamInput
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 ParamInput
impl RefUnwindSafe for ParamInput
impl Send for ParamInput
impl Sync for ParamInput
impl Unpin for ParamInput
impl UnwindSafe for ParamInput
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