pub struct MissingArg(pub String);Expand description
A declared argument had no value supplied when binding a job’s args.
Tuple Fields§
§0: StringTrait Implementations§
Source§impl Clone for MissingArg
impl Clone for MissingArg
Source§fn clone(&self) -> MissingArg
fn clone(&self) -> MissingArg
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MissingArg
impl Debug for MissingArg
Source§impl Display for MissingArg
impl Display for MissingArg
impl Eq for MissingArg
Source§impl Error for MissingArg
impl Error for MissingArg
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for MissingArg
impl PartialEq for MissingArg
impl StructuralPartialEq for MissingArg
Auto Trait Implementations§
impl Freeze for MissingArg
impl RefUnwindSafe for MissingArg
impl Send for MissingArg
impl Sync for MissingArg
impl Unpin for MissingArg
impl UnsafeUnpin for MissingArg
impl UnwindSafe for MissingArg
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