[−][src]Struct tokio_executor::SpawnError
Errors returned by Executor::spawn
.
Spawn errors should represent relatively rare scenarios. Currently, the two
scenarios represented by SpawnError
are:
- An executor being at capacity or full. As such, the executor is not able to accept a new future. This error state is expected to be transient.
- An executor has been shutdown and can no longer accept new futures. This error state is expected to be permanent.
Methods
impl SpawnError
[src]
[−]
impl SpawnError
pub fn shutdown() -> Self
[src]
[−]
pub fn shutdown() -> Self
Return a new SpawnError
reflecting a shutdown executor failure.
pub fn at_capacity() -> Self
[src]
[−]
pub fn at_capacity() -> Self
Return a new SpawnError
reflecting an executor at capacity failure.
pub fn is_shutdown(&self) -> bool
[src]
[−]
pub fn is_shutdown(&self) -> bool
Returns true
if the error reflects a shutdown executor failure.
pub fn is_at_capacity(&self) -> bool
[src]
[−]
pub fn is_at_capacity(&self) -> bool
Returns true
if the error reflects an executor at capacity failure.
Trait Implementations
impl Debug for SpawnError
[src]
[+]
impl Debug for SpawnError
impl Display for SpawnError
[src]
[+]
impl Display for SpawnError
impl Error for SpawnError
[src]
[+]
impl Error for SpawnError
Auto Trait Implementations
impl Send for SpawnError
impl Send for SpawnError
impl Sync for SpawnError
impl Sync for SpawnError
Blanket Implementations
impl<T> From for T
[src]
[+]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
[+]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToString for T where
T: Display + ?Sized,
[src]
[+]
impl<T> ToString for T where
T: Display + ?Sized,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
[+]
impl<T, U> TryFrom for T where
T: From<U>,
impl<T> Borrow for T where
T: ?Sized,
[src]
[+]
impl<T> Borrow for T where
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
[+]
impl<T> Any for T where
T: 'static + ?Sized,
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
[+]
impl<T, U> TryInto for T where
U: TryFrom<T>,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
[+]
impl<T> BorrowMut for T where
T: ?Sized,