#[non_exhaustive]pub enum ProtocolError {
Io(Error),
Codec(FrameError),
Timeout(&'static str),
UnexpectedAck {
version: u8,
frame_type: u8,
acked_seq: u32,
expected_seq: u32,
},
PartialAck {
acked: u32,
sent: u32,
},
NoHostsConfigured,
AllHostsFailed(Box<Self>),
Tls(String),
}Expand description
Errors emitted by the high-level client.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Io(Error)
I/O error while reading from or writing to the network.
Codec(FrameError)
Codec error (frame parse / encode failure).
Timeout(&'static str)
Operation timed out (connect, write, or ACK read).
UnexpectedAck
The receiver’s ACK had an unexpected version or frame type, or its sequence number didn’t match what the client just sent.
Fields
PartialAck
The receiver acknowledged fewer events than were sent (partial ACK). Surfaces so the caller can decide whether to retry the unacked tail.
Fields
NoHostsConfigured
No hosts were configured for the client.
AllHostsFailed(Box<Self>)
All configured hosts have been tried and all failed; the wrapped error is the most recent failure.
Tls(String)
Available on crate feature
tls only.TLS configuration error (key/cert load, server-name parse, …).
Trait Implementations§
Source§impl Debug for ProtocolError
impl Debug for ProtocolError
Source§impl Display for ProtocolError
impl Display for ProtocolError
Source§impl Error for ProtocolError
impl Error for ProtocolError
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<Error> for ProtocolError
impl From<Error> for ProtocolError
Source§impl From<FrameError> for ProtocolError
impl From<FrameError> for ProtocolError
Source§fn from(source: FrameError) -> Self
fn from(source: FrameError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ProtocolError
impl !RefUnwindSafe for ProtocolError
impl Send for ProtocolError
impl Sync for ProtocolError
impl Unpin for ProtocolError
impl UnsafeUnpin for ProtocolError
impl !UnwindSafe for ProtocolError
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