pub trait HttpServerEngine:
Send
+ Sync
+ 'static {
type Router: Send + 'static;
}Expand description
Pluggable HTTP engine (NestJS “platform agnostic” idea). Only AxumHttpEngine is implemented today.
pub trait HttpServerEngine:
Send
+ Sync
+ 'static {
type Router: Send + 'static;
}Pluggable HTTP engine (NestJS “platform agnostic” idea). Only AxumHttpEngine is implemented today.