Type Definition poem::endpoint::BoxEndpoint[][src]

pub type BoxEndpoint<'a, T> = Box<dyn Endpoint<Output = T> + 'a>;
Expand description

An owned dynamically typed Endpoint for use in cases where you can’t statically type your result or need to add some indirection.