[][src]Enum naja_async_runtime::RtErrKind

pub enum RtErrKind {
    DoubleExecutorInit,
    Spawn {
        context: String,
    },
}

The different kind of errors that can happen when you use the async_runtime API.

Variants

DoubleExecutorInit

You should not call rt::init twice on the same thread. In general if you are a library author, you should not call it unless you started the thread. Otherwise just call rt::spawn and let the client code decide which executor shall be used.

Spawn

An backend error happened while trying to spawn:

  • Spawning on wasm is infallible.
  • Spawning on juliex is infallible (as long as you don't call rt::spawn_local).
  • Spawning on futures::executor::LocalPool can fail with futures::task::SpawnError. The only reason for this is that the executor was shut down.

Note that even though certain executors are infallible right now, that might change in the future, notably WASM is bound to change quite alot over time.

Fields of Spawn

context: String

Add contextual information to which future failed to spawn.

Trait Implementations

impl PartialEq<RtErrKind> for RtErrKind[src]

impl Eq for RtErrKind[src]

impl From<RtErrKind> for RtErr[src]

impl Clone for RtErrKind[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for RtErrKind[src]

impl Display for RtErrKind[src]

impl Fail for RtErrKind[src]

fn context<D>(self, context: D) -> Context<D> where
    D: Display + Send + Sync + 'static, 
[src]

Provides context for this failure. Read more

fn compat(self) -> Compat<Self>[src]

Wraps this failure in a compatibility wrapper that implements std::error::Error. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> AsFail for T where
    T: Fail
[src]

impl<E> Fail for E where
    E: 'static + Error + Send + Sync
[src]

fn name(&self) -> Option<&str>[src]

Returns the "name" of the error. Read more

fn cause(&self) -> Option<&(dyn Fail + 'static)>[src]

Returns a reference to the underlying cause of this failure, if it is an error that wraps other errors. Read more

fn backtrace(&self) -> Option<&Backtrace>[src]

Returns a reference to the Backtrace carried by this failure, if it carries one. Read more

fn context<D>(self, context: D) -> Context<D> where
    D: Display + Send + Sync + 'static, 
[src]

Provides context for this failure. Read more

fn compat(self) -> Compat<Self>[src]

Wraps this failure in a compatibility wrapper that implements std::error::Error. Read more