static_web_server/exts/mod.rs
1// SPDX-License-Identifier: MIT OR Apache-2.0
2// This file is part of Static Web Server.
3// See https://static-web-server.net/ for more information
4// Copyright (C) 2019-present Jose Quintana <joseluisq.net>
5
6//! Extension traits and utilities for HTTP, MIME, and header types.
7//!
8//! This module groups all "extension" code that augments external types
9//! (e.g., `hyper::Method`, `mime_guess::Mime`) with SWS-specific behaviour.
10
11pub(crate) mod headers;
12pub mod http;
13#[allow(dead_code)]
14pub(crate) mod mime;