pub enum ReplicationError {
TruncatedMessage,
UnknownReplicationMessageType(u8),
UnknownTupleColumnType(u8),
UnknownUpdateMarker(u8),
}Variants§
TruncatedMessage
UnknownReplicationMessageType(u8)
UnknownTupleColumnType(u8)
UnknownUpdateMarker(u8)
Trait Implementations§
Source§impl Debug for ReplicationError
impl Debug for ReplicationError
Source§impl From<ReplicationError> for ElefantClientError
impl From<ReplicationError> for ElefantClientError
Source§fn from(e: ReplicationError) -> Self
fn from(e: ReplicationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ReplicationError
impl RefUnwindSafe for ReplicationError
impl Send for ReplicationError
impl Sync for ReplicationError
impl Unpin for ReplicationError
impl UnsafeUnpin for ReplicationError
impl UnwindSafe for ReplicationError
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