pub enum AeronError {
Show 19 variants
Generic(GenericError),
SubscriptionNotReady(i64),
PublicationNotReady(i64),
IllegalArgument(IllegalArgumentError),
IllegalState(IllegalStateError),
MemMappedFileError(Error),
DriverTimeout(DriverInteractionError),
ReentrantException,
RegistrationException(i32, String),
ChannelEndpointException(i64, String),
ClientTimeoutException,
BroadcastTransmitError(BroadcastTransmitError),
RingBuffer(RingBufferError),
NotConnected,
BackPressured,
AdminAction,
PublicationClosed,
MaxPositionExceeded,
UnknownCode(i64),
}
Variants§
Generic(GenericError)
SubscriptionNotReady(i64)
PublicationNotReady(i64)
IllegalArgument(IllegalArgumentError)
IllegalState(IllegalStateError)
MemMappedFileError(Error)
DriverTimeout(DriverInteractionError)
ReentrantException
RegistrationException(i32, String)
ChannelEndpointException(i64, String)
ClientTimeoutException
BroadcastTransmitError(BroadcastTransmitError)
RingBuffer(RingBufferError)
NotConnected
BackPressured
AdminAction
PublicationClosed
MaxPositionExceeded
UnknownCode(i64)
Trait Implementations§
Source§impl Debug for AeronError
impl Debug for AeronError
Source§impl Display for AeronError
impl Display for AeronError
Source§impl Error for AeronError
impl Error for AeronError
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<BroadcastTransmitError> for AeronError
impl From<BroadcastTransmitError> for AeronError
Source§fn from(source: BroadcastTransmitError) -> Self
fn from(source: BroadcastTransmitError) -> Self
Converts to this type from the input type.
Source§impl From<DriverInteractionError> for AeronError
impl From<DriverInteractionError> for AeronError
Source§fn from(source: DriverInteractionError) -> Self
fn from(source: DriverInteractionError) -> Self
Converts to this type from the input type.
Source§impl From<GenericError> for AeronError
impl From<GenericError> for AeronError
Source§fn from(source: GenericError) -> Self
fn from(source: GenericError) -> Self
Converts to this type from the input type.
Source§impl From<IllegalArgumentError> for AeronError
impl From<IllegalArgumentError> for AeronError
Source§fn from(source: IllegalArgumentError) -> Self
fn from(source: IllegalArgumentError) -> Self
Converts to this type from the input type.
Source§impl From<IllegalStateError> for AeronError
impl From<IllegalStateError> for AeronError
Source§fn from(source: IllegalStateError) -> Self
fn from(source: IllegalStateError) -> Self
Converts to this type from the input type.
Source§impl From<RingBufferError> for AeronError
impl From<RingBufferError> for AeronError
Source§fn from(source: RingBufferError) -> Self
fn from(source: RingBufferError) -> Self
Converts to this type from the input type.
Source§impl Hash for AeronError
impl Hash for AeronError
Source§impl PartialEq for AeronError
impl PartialEq for AeronError
impl Eq for AeronError
Auto Trait Implementations§
impl Freeze for AeronError
impl !RefUnwindSafe for AeronError
impl Send for AeronError
impl Sync for AeronError
impl Unpin for AeronError
impl !UnwindSafe for AeronError
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