Struct corona::Dropped [] [src]

pub struct Dropped;

An error marker when a future is dropped before having change to get resolved.

If you wait on a future and the corresponding executor gets destroyed before the future has a chance to run, this error is returned as there's no chance the future will ever get resolved. It is up to the waiter to clean up the stack, or use methods that panic implicitly.

Trait Implementations

impl Debug for Dropped
[src]

Formats the value using the given formatter.

impl Error for Dropped
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more

impl Display for Dropped
[src]

Formats the value using the given formatter. Read more