Enum round_based::async_runtime::InternalError
source · [−]#[non_exhaustive]
pub enum InternalError {
MissingState,
}Available on crate feature
async-runtime only.Expand description
Describes internal errors that could occur
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.
MissingState
Trait Implementations
sourceimpl Debug for InternalError
impl Debug for InternalError
sourceimpl<E, RE, SE> From<InternalError> for Error<E, RE, SE>
impl<E, RE, SE> From<InternalError> for Error<E, RE, SE>
sourcefn from(err: InternalError) -> Self
fn from(err: InternalError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for InternalError
impl Send for InternalError
impl Sync for InternalError
impl Unpin for InternalError
impl UnwindSafe for InternalError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more