pub trait FfiFuture {
    fn dyn_poll(self: Pin<&mut Self>, ctx: &mut Context<'_>) -> PollFuture;
}
Available on crate features dyn-traits and futures only.
Expand description

Models a Future resolving to ().

Required Methods

Trait Implementations

Implementors