[][src]Enum 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 Clone for RtErrKind[src]

impl Debug for RtErrKind[src]

impl Display for RtErrKind[src]

impl Eq for RtErrKind[src]

impl Fail for RtErrKind[src]

impl From<RtErrKind> for RtErr[src]

impl PartialEq<RtErrKind> for RtErrKind[src]

impl StructuralEq for RtErrKind[src]

impl StructuralPartialEq for RtErrKind[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.