[][src]Type Definition async_hsm::Handle

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

Abstract handle of the successing state

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