pub struct DecodedArgument {
pub index: usize,
pub name: Option<String>,
pub param_type: ParamType,
pub value: ArgumentValue,
}Expand description
A single decoded argument.
Fields§
§index: usize§name: Option<String>§param_type: ParamType§value: ArgumentValueTrait Implementations§
Source§impl Clone for DecodedArgument
impl Clone for DecodedArgument
Source§fn clone(&self) -> DecodedArgument
fn clone(&self) -> DecodedArgument
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DecodedArgument
impl RefUnwindSafe for DecodedArgument
impl Send for DecodedArgument
impl Sync for DecodedArgument
impl Unpin for DecodedArgument
impl UnsafeUnpin for DecodedArgument
impl UnwindSafe for DecodedArgument
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