pub struct CapturedArgument {
pub name: String,
pub type_name: String,
pub location: ArgumentLocation,
pub value: ArgumentValue,
pub valid: bool,
pub error: Option<String>,
}Expand description
Captured argument value with type information
Fields§
§name: String§type_name: String§location: ArgumentLocation§value: ArgumentValue§valid: bool§error: Option<String>Trait Implementations§
Source§impl Clone for CapturedArgument
impl Clone for CapturedArgument
Source§fn clone(&self) -> CapturedArgument
fn clone(&self) -> CapturedArgument
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 moreSource§impl Debug for CapturedArgument
impl Debug for CapturedArgument
Source§impl<'de> Deserialize<'de> for CapturedArgument
impl<'de> Deserialize<'de> for CapturedArgument
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CapturedArgument
impl RefUnwindSafe for CapturedArgument
impl Send for CapturedArgument
impl Sync for CapturedArgument
impl Unpin for CapturedArgument
impl UnsafeUnpin for CapturedArgument
impl UnwindSafe for CapturedArgument
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