pub struct XtaskArg {
pub name: String,
pub long: Option<String>,
pub short: Option<char>,
pub help: Option<String>,
pub required: bool,
pub value: XtaskValue,
}Fields§
§name: String§long: Option<String>§short: Option<char>§help: Option<String>§required: bool§value: XtaskValueTrait Implementations§
Source§impl<'de> Deserialize<'de> for XtaskArg
impl<'de> Deserialize<'de> for XtaskArg
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
impl Eq for XtaskArg
impl StructuralPartialEq for XtaskArg
Auto Trait Implementations§
impl Freeze for XtaskArg
impl RefUnwindSafe for XtaskArg
impl Send for XtaskArg
impl Sync for XtaskArg
impl Unpin for XtaskArg
impl UnsafeUnpin for XtaskArg
impl UnwindSafe for XtaskArg
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