1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//! HTTP caching. //! //! Web page performance can be significantly improved by caching resources. //! This submodule includes headers and types to communicate how and when to //! cache resources. //! //! # Further Reading //! //! - [MDN: HTTP Caching](https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching) mod age; mod cache_control; mod expires; pub use age::Age; pub use cache_control::CacheControl; pub use cache_control::CacheDirective; pub use expires::Expires;