pub trait HandlerExt<Op, Exts>: Handler<Op, Exts>where
Op: OperationShape,{
// Provided method
fn into_service(self) -> IntoService<Op, Self>
where Self: Sized { ... }
}Expand description
An extension trait for Handler.
Provided Methods§
Sourcefn into_service(self) -> IntoService<Op, Self>where
Self: Sized,
fn into_service(self) -> IntoService<Op, Self>where
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".