pub struct ArgumentDefinition {
pub name: String,
pub arg_type: ArgumentType,
pub required: bool,
pub description: String,
pub validation: Vec<ValidationRule>,
}Expand description
Definition of a positional argument
Positional arguments are required in order and don’t have a flag prefix (unlike options).
§Example
name: input_file
arg_type: path
required: true
description: "Path to input file"
validation:
- must_exist: true
- extensions: [yaml, yml]Fields§
§name: StringArgument name (used in error messages and documentation)
arg_type: ArgumentTypeExpected type of the argument
required: boolWhether the argument is mandatory
description: StringHuman-readable description
validation: Vec<ValidationRule>Validation rules to apply
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
Source§impl PartialEq for ArgumentDefinition
impl PartialEq for ArgumentDefinition
Source§impl Serialize for ArgumentDefinition
impl Serialize for ArgumentDefinition
impl StructuralPartialEq for ArgumentDefinition
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