pub enum ZimqError {
IOError(Error),
InitError(String),
UninitializedError(String),
InvalidMessageError(String),
InvalidBinlogPathError(String),
DuplicatedMessageError(String),
SerializeError(String),
SendError(SendError<Message>),
}Variants§
IOError(Error)
InitError(String)
UninitializedError(String)
InvalidMessageError(String)
InvalidBinlogPathError(String)
DuplicatedMessageError(String)
SerializeError(String)
SendError(SendError<Message>)
Trait Implementations§
Source§impl Error for ZimqError
impl Error for ZimqError
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 ZimqError
impl !RefUnwindSafe for ZimqError
impl Send for ZimqError
impl Sync for ZimqError
impl Unpin for ZimqError
impl !UnwindSafe for ZimqError
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