Trait FutureType

Source
pub trait FutureType<V> {
    // Required methods
    fn on_drop() -> V;
    fn complete(self, result: V);
}
Expand description

Types convertible to a Promise must implement this type

Required Methods§

Source

fn on_drop() -> V

The value that will be returned if a Promise of this type is dropped without being completed

Source

fn complete(self, result: V)

Complete the future with the specified value

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§