Enum tokio_io_pool::StreamSpawnError[][src]

pub enum StreamSpawnError<SE> {
    Spawn(SpawnError),
    Stream(SE),
}

An error that occurred as a result of spawning futures from a stream given to Runtime::spawn_all.

Variants

An error occurred while spawning a future yielded by the stream onto the pool.

An error occurred while polling the stream for another future.

Trait Implementations

impl<SE: Debug> Debug for StreamSpawnError<SE>
[src]

Formats the value using the given formatter. Read more

impl<SE> From<SE> for StreamSpawnError<SE>
[src]

Performs the conversion.

Auto Trait Implementations

impl<SE> Send for StreamSpawnError<SE> where
    SE: Send

impl<SE> Sync for StreamSpawnError<SE> where
    SE: Sync