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