scuffle_http/backend/
mod.rs

1//! This module contains the underlying backends for the server.
2//!
3//! You probably don't want to use this module directly and should instead use the [`HttpServer`](crate::HttpServer) struct.
4
5#[cfg(feature = "http3")]
6pub mod h3;
7#[cfg(any(feature = "http1", feature = "http2"))]
8pub mod hyper;