pub trait IntoBoxHttpService: Sized {
// Required method
fn into_box(self) -> BoxHttpService;
}Available on crate feature
tower only.Expand description
Extension trait to box a configured service stack.
Required Methods§
Sourcefn into_box(self) -> BoxHttpService
fn into_box(self) -> BoxHttpService
Boxes self as BoxHttpService.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".