pub enum YanHunError {
Ingest(String),
Analysis(String),
Persistence(String),
Channel(String),
Config(String),
CasConflict(String),
Purification(String),
Io(Error),
}Variants§
Ingest(String)
Analysis(String)
Persistence(String)
Channel(String)
Config(String)
CasConflict(String)
Purification(String)
Io(Error)
Trait Implementations§
Source§impl Debug for YanHunError
impl Debug for YanHunError
Source§impl Display for YanHunError
impl Display for YanHunError
Source§impl Error for YanHunError
impl Error for YanHunError
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 From<Error> for YanHunError
impl From<Error> for YanHunError
Auto Trait Implementations§
impl Freeze for YanHunError
impl !RefUnwindSafe for YanHunError
impl Send for YanHunError
impl Sync for YanHunError
impl Unpin for YanHunError
impl UnsafeUnpin for YanHunError
impl !UnwindSafe for YanHunError
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