pub enum IntakeError {
ParseError(String),
SignalExtractionError(String),
MutationError(String),
ConfigError(String),
StorageError(String),
}Expand description
Errors that can occur during intake processing
Variants§
ParseError(String)
SignalExtractionError(String)
MutationError(String)
ConfigError(String)
StorageError(String)
Trait Implementations§
Source§impl Debug for IntakeError
impl Debug for IntakeError
Source§impl Display for IntakeError
impl Display for IntakeError
Source§impl Error for IntakeError
impl Error for IntakeError
1.30.0 · 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 IntakeError
impl RefUnwindSafe for IntakeError
impl Send for IntakeError
impl Sync for IntakeError
impl Unpin for IntakeError
impl UnsafeUnpin for IntakeError
impl UnwindSafe for IntakeError
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