Enum nimble_rust::err::ClientErrorKind
source · pub enum ClientErrorKind {
Unexpected(String),
IoErr(Error),
WrongConnectResponseRequestId(ClientRequestId),
WrongDownloadRequestId,
DownloadResponseWasUnexpected,
UnexpectedBlobChannelCommand,
FrontLogicErr(FrontLogicError),
}
Variants§
Unexpected(String)
IoErr(Error)
WrongConnectResponseRequestId(ClientRequestId)
WrongDownloadRequestId
DownloadResponseWasUnexpected
UnexpectedBlobChannelCommand
FrontLogicErr(FrontLogicError)
Trait Implementations§
source§impl Debug for ClientErrorKind
impl Debug for ClientErrorKind
source§impl Display for ClientErrorKind
impl Display for ClientErrorKind
source§impl Error for ClientErrorKind
impl Error for ClientErrorKind
1.30.0 · 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 ErrorLevelProvider for ClientErrorKind
impl ErrorLevelProvider for ClientErrorKind
fn error_level(&self) -> ErrorLevel
Auto Trait Implementations§
impl Freeze for ClientErrorKind
impl !RefUnwindSafe for ClientErrorKind
impl Send for ClientErrorKind
impl Sync for ClientErrorKind
impl Unpin for ClientErrorKind
impl !UnwindSafe for ClientErrorKind
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