pub trait Run<L> {
type Output;
// Required method
fn run(self, listener: L) -> Self::Output;
}Expand description
Runs a ServerKit router with a listener supported by this adapter.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".