pub enum EventParseError {
ColumnParseError(ColumnParseError),
Io(Error),
EofError,
Uuid(Error),
}
Variants§
Trait Implementations§
Source§impl Debug for EventParseError
impl Debug for EventParseError
Source§impl Display for EventParseError
impl Display for EventParseError
Source§impl Error for EventParseError
impl Error for EventParseError
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<ColumnParseError> for EventParseError
impl From<ColumnParseError> for EventParseError
Source§fn from(source: ColumnParseError) -> Self
fn from(source: ColumnParseError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for EventParseError
impl From<Error> for EventParseError
Source§impl From<Error> for EventParseError
impl From<Error> for EventParseError
Source§impl From<EventParseError> for BinlogParseError
impl From<EventParseError> for BinlogParseError
Source§fn from(source: EventParseError) -> Self
fn from(source: EventParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EventParseError
impl !RefUnwindSafe for EventParseError
impl Send for EventParseError
impl Sync for EventParseError
impl Unpin for EventParseError
impl !UnwindSafe for EventParseError
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