pub enum DiagnosticError {
ParseError {
source: String,
message: String,
input: String,
},
ValidationFailure {
rule: String,
message: String,
evidence: String,
},
BackendError {
backend: String,
message: String,
},
Timeout {
operation: String,
duration_ms: u64,
},
MalformedEvent {
line: String,
error: String,
},
TelegramSendError {
operation: String,
error: String,
retry_count: u32,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DiagnosticError
impl RefUnwindSafe for DiagnosticError
impl Send for DiagnosticError
impl Sync for DiagnosticError
impl Unpin for DiagnosticError
impl UnsafeUnpin for DiagnosticError
impl UnwindSafe for DiagnosticError
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