Skip to main content

Terminal

Type Alias Terminal 

Source
pub type Terminal<C> = Box<dyn FnOnce(C) -> Pin<Box<dyn Future<Output = Result<C, Error>> + Send>> + Send>;
Expand description

The terminal handler invoked at the end of a middleware chain.

Aliased Typeยง

pub struct Terminal<C>(/* private fields */);