pub struct Argument {
pub name: &'static str,
pub short_name: Option<char>,
pub description: &'static str,
pub default: Value,
pub value: Value,
pub was_set: bool,
}Fields§
§name: &'static str§short_name: Option<char>§description: &'static str§default: Value§value: Value§was_set: boolTrait Implementations§
impl StructuralPartialEq for Argument
Auto Trait Implementations§
impl Freeze for Argument
impl RefUnwindSafe for Argument
impl Send for Argument
impl Sync for Argument
impl Unpin for Argument
impl UnsafeUnpin for Argument
impl UnwindSafe for Argument
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