Enum hitbox_backend::BackendError [−][src]
pub enum BackendError { InternalError(Box<dyn Error + Send>), ConnectionError(Box<dyn Error + Send>), }
Expand description
Proxy Error describes general groups of errors in backend interaction process.
Variants
Internal backend error, state or computation error.
Any error not bounded with network interaction.
Network interaction error.
Trait Implementations
impl Debug for BackendError
[src]
impl Debug for BackendError
[src]impl Display for BackendError
[src]
impl Display for BackendError
[src]impl Error for BackendError
[src]
impl Error for BackendError
[src]fn source(&self) -> Option<&(dyn Error + 'static)>
[src]
fn source(&self) -> Option<&(dyn Error + 'static)>
[src]The lower-level source of this error, if any. Read more
fn backtrace(&self) -> Option<&Backtrace>
[src]
fn backtrace(&self) -> Option<&Backtrace>
[src]🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
fn description(&self) -> &str
1.0.0[src]
fn description(&self) -> &str
1.0.0[src]👎 Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations
impl !RefUnwindSafe for BackendError
impl Send for BackendError
impl !Sync for BackendError
impl Unpin for BackendError
impl !UnwindSafe for BackendError
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more