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

pub type BoxEndpoint<T> = Box<dyn Endpoint<Output = T>>;
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.