pub enum RocksDbCdcError {
RocksDb(Error),
Serialization(String),
Deserialization(String),
Join(String),
Other(String),
}Expand description
Errors that can occur in the RocksDB CDC log.
Variants§
RocksDb(Error)
RocksDB storage error.
Serialization(String)
Failed to serialize a CDC event.
Deserialization(String)
Failed to deserialize a CDC event.
Join(String)
A spawned blocking task failed to join.
Other(String)
Catch-all for other errors.
Trait Implementations§
Source§impl Debug for RocksDbCdcError
impl Debug for RocksDbCdcError
Source§impl Display for RocksDbCdcError
impl Display for RocksDbCdcError
Source§impl Error for RocksDbCdcError
impl Error for RocksDbCdcError
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 RocksDbCdcError
impl RefUnwindSafe for RocksDbCdcError
impl Send for RocksDbCdcError
impl Sync for RocksDbCdcError
impl Unpin for RocksDbCdcError
impl UnsafeUnpin for RocksDbCdcError
impl UnwindSafe for RocksDbCdcError
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