pub enum EventProcessingError {
Parsing(String),
Enrichment(String),
ChannelClosed,
Timeout,
IteratorConsumed,
}Expand description
Errors related to event processing and iteration
Variants§
Trait Implementations§
Source§impl Debug for EventProcessingError
impl Debug for EventProcessingError
Source§impl Display for EventProcessingError
impl Display for EventProcessingError
Source§impl Error for EventProcessingError
impl Error for EventProcessingError
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 EventProcessingError
impl RefUnwindSafe for EventProcessingError
impl Send for EventProcessingError
impl Sync for EventProcessingError
impl Unpin for EventProcessingError
impl UnsafeUnpin for EventProcessingError
impl UnwindSafe for EventProcessingError
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