pub enum ClientError {
IoError(Error),
RectifyError(RectifyError),
ClientLogicErrorKind(ClientLogicError),
QueueError(QueueError),
DatagramChunkerError(DatagramChunkerError),
NimbleLayerError(NimbleLayerError),
PredictionQueueOverflow,
SeqMapError(SeqMapError),
}
Variants§
IoError(Error)
RectifyError(RectifyError)
ClientLogicErrorKind(ClientLogicError)
QueueError(QueueError)
DatagramChunkerError(DatagramChunkerError)
NimbleLayerError(NimbleLayerError)
PredictionQueueOverflow
SeqMapError(SeqMapError)
Trait Implementations§
Source§impl Debug for ClientError
impl Debug for ClientError
Source§impl Display for ClientError
impl Display for ClientError
Source§impl ErrorLevelProvider for ClientError
impl ErrorLevelProvider for ClientError
fn error_level(&self) -> ErrorLevel
Source§impl From<ClientLogicError> for ClientError
impl From<ClientLogicError> for ClientError
Source§fn from(err: ClientLogicError) -> ClientError
fn from(err: ClientLogicError) -> ClientError
Converts to this type from the input type.
Source§impl From<DatagramChunkerError> for ClientError
impl From<DatagramChunkerError> for ClientError
Source§fn from(value: DatagramChunkerError) -> ClientError
fn from(value: DatagramChunkerError) -> ClientError
Converts to this type from the input type.
Source§impl From<Error> for ClientError
impl From<Error> for ClientError
Source§fn from(err: Error) -> ClientError
fn from(err: Error) -> ClientError
Converts to this type from the input type.
Source§impl From<NimbleLayerError> for ClientError
impl From<NimbleLayerError> for ClientError
Source§fn from(value: NimbleLayerError) -> ClientError
fn from(value: NimbleLayerError) -> ClientError
Converts to this type from the input type.
Source§impl From<QueueError> for ClientError
impl From<QueueError> for ClientError
Source§fn from(err: QueueError) -> ClientError
fn from(err: QueueError) -> ClientError
Converts to this type from the input type.
Source§impl From<RectifyError> for ClientError
impl From<RectifyError> for ClientError
Source§fn from(err: RectifyError) -> ClientError
fn from(err: RectifyError) -> ClientError
Converts to this type from the input type.
Source§impl From<SeqMapError> for ClientError
impl From<SeqMapError> for ClientError
Source§fn from(err: SeqMapError) -> ClientError
fn from(err: SeqMapError) -> ClientError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ClientError
impl !RefUnwindSafe for ClientError
impl Send for ClientError
impl Sync for ClientError
impl Unpin for ClientError
impl !UnwindSafe for ClientError
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