pub struct ArgumentDefinition {
pub name: String,
pub arg_type: String,
pub required: bool,
pub default: Option<Value>,
pub description: Option<String>,
}Expand description
Argument definition
Fields§
§name: StringArgument name
arg_type: StringArgument type
required: boolWhether argument is required
default: Option<Value>Default value if not provided
description: Option<String>Argument description
Trait Implementations§
Source§impl Clone for ArgumentDefinition
impl Clone for ArgumentDefinition
Source§fn clone(&self) -> ArgumentDefinition
fn clone(&self) -> ArgumentDefinition
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 ArgumentDefinition
impl Debug for ArgumentDefinition
Source§impl<'de> Deserialize<'de> for ArgumentDefinition
impl<'de> Deserialize<'de> for ArgumentDefinition
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 ArgumentDefinition
impl RefUnwindSafe for ArgumentDefinition
impl Send for ArgumentDefinition
impl Sync for ArgumentDefinition
impl Unpin for ArgumentDefinition
impl UnwindSafe for ArgumentDefinition
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