//! Application layer traits: IApplicationBuilder and IHost.
use crateResult;
use crateIMiddleware;
use Arc;
/// Builder for configuring the middleware pipeline.
///
/// Analogous to ASP.NET Core's IApplicationBuilder.
/// The web host that binds to an address and starts serving HTTP requests.
///
/// Analogous to ASP.NET Core's IWebHost.