Enum csaf_walker::visitors::store::StoreValidatedError
source · pub enum StoreValidatedError {
Store(StoreError),
Validation(ValidationError),
}Variants§
Store(StoreError)
Validation(ValidationError)
Trait Implementations§
source§impl Debug for StoreValidatedError
impl Debug for StoreValidatedError
source§impl Display for StoreValidatedError
impl Display for StoreValidatedError
source§impl Error for StoreValidatedError
impl Error for StoreValidatedError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 From<StoreError> for StoreValidatedError
impl From<StoreError> for StoreValidatedError
source§fn from(source: StoreError) -> Self
fn from(source: StoreError) -> Self
Converts to this type from the input type.
source§impl From<ValidationError> for StoreValidatedError
impl From<ValidationError> for StoreValidatedError
source§fn from(source: ValidationError) -> Self
fn from(source: ValidationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for StoreValidatedError
impl Send for StoreValidatedError
impl Sync for StoreValidatedError
impl Unpin for StoreValidatedError
impl UnwindSafe for StoreValidatedError
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