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§
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.