Type Alias Handle

Source
pub type Handle<'s, Composite, Out, Err> = Pin<Box<dyn Future<Output = Result<Transit<'s, Composite, Out, Err>, Err>> + 's>>;
Expand description

Abstract handle of the successing state

This type must be returned by all async functions forming the HSM.

Aliased Typeยง

pub struct Handle<'s, Composite, Out, Err> { /* private fields */ }