Enum csaf_walker::walker::Error
source · pub enum Error<VE, SE>where
VE: Display + Debug,
SE: Display + Debug,{
Source(SE),
Url(ParseError),
Visitor(VE),
}Variants§
Trait Implementations§
source§impl<VE, SE> Debug for Error<VE, SE>where
VE: Display + Debug + Debug,
SE: Display + Debug + Debug,
impl<VE, SE> Debug for Error<VE, SE>where VE: Display + Debug + Debug, SE: Display + Debug + Debug,
source§impl<VE, SE> Error for Error<VE, SE>where
VE: Display + Debug,
SE: Display + Debug,
Self: Debug + Display,
impl<VE, SE> Error for Error<VE, SE>where VE: Display + Debug, SE: Display + Debug, Self: Debug + Display,
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()
Auto Trait Implementations§
impl<VE, SE> RefUnwindSafe for Error<VE, SE>where SE: RefUnwindSafe, VE: RefUnwindSafe,
impl<VE, SE> Send for Error<VE, SE>where SE: Send, VE: Send,
impl<VE, SE> Sync for Error<VE, SE>where SE: Sync, VE: Sync,
impl<VE, SE> Unpin for Error<VE, SE>where SE: Unpin, VE: Unpin,
impl<VE, SE> UnwindSafe for Error<VE, SE>where SE: UnwindSafe, VE: UnwindSafe,
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