pub trait EndpointExt<S>: Sized + for<'a> Endpoint<'a, S> {
// Provided method
fn boxed(self) -> Boxed<S>
where S: 'static { ... }
}Expand description
Extra methods of endpoint.
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".