pub enum ArgError {
ReadBody {
path: PathBuf,
source: Error,
},
ParseBody {
path: PathBuf,
source: Error,
},
PartSyntax {
flag: &'static str,
raw: String,
},
}Expand description
Something about the arguments the document cannot repair.
Variants§
Trait Implementations§
Source§impl Error for ArgError
impl Error for ArgError
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()
Auto Trait Implementations§
impl !RefUnwindSafe for ArgError
impl !UnwindSafe for ArgError
impl Freeze for ArgError
impl Send for ArgError
impl Sync for ArgError
impl Unpin for ArgError
impl UnsafeUnpin for ArgError
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