pub struct VldClapError {
pub source: ErrorSource,
pub message: String,
}Expand description
Error returned by vld-clap validation functions.
Fields§
§source: ErrorSourceThe underlying vld validation error (if any).
message: StringHuman-readable summary of all issues for CLI display.
Implementations§
Source§impl VldClapError
impl VldClapError
Trait Implementations§
Source§impl Clone for VldClapError
impl Clone for VldClapError
Source§fn clone(&self) -> VldClapError
fn clone(&self) -> VldClapError
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 VldClapError
impl Debug for VldClapError
Source§impl Display for VldClapError
impl Display for VldClapError
Source§impl Error for VldClapError
impl Error for VldClapError
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 Freeze for VldClapError
impl RefUnwindSafe for VldClapError
impl Send for VldClapError
impl Sync for VldClapError
impl Unpin for VldClapError
impl UnsafeUnpin for VldClapError
impl UnwindSafe for VldClapError
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