pub enum AeronErrorType {
NullOrNotConnected,
ClientErrorDriverTimeout,
ClientErrorClientTimeout,
ClientErrorConductorServiceTimeout,
ClientErrorBufferFull,
PublicationBackPressured,
PublicationAdminAction,
PublicationClosed,
PublicationMaxPositionExceeded,
PublicationError,
TimedOut,
Unknown(i32),
}
Variants§
NullOrNotConnected
ClientErrorDriverTimeout
ClientErrorClientTimeout
ClientErrorConductorServiceTimeout
ClientErrorBufferFull
PublicationBackPressured
PublicationAdminAction
PublicationClosed
PublicationMaxPositionExceeded
PublicationError
TimedOut
Unknown(i32)
Implementations§
Trait Implementations§
source§impl Debug for AeronErrorType
impl Debug for AeronErrorType
source§impl From<AeronErrorType> for AeronCError
impl From<AeronErrorType> for AeronCError
source§fn from(value: AeronErrorType) -> Self
fn from(value: AeronErrorType) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AeronErrorType
impl RefUnwindSafe for AeronErrorType
impl Send for AeronErrorType
impl Sync for AeronErrorType
impl Unpin for AeronErrorType
impl UnwindSafe for AeronErrorType
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