1//! HTTP/1.0 version string constant ([RFC 1945 §3.1]). 2//! 3//! [RFC 1945 §3.1]: https://www.rfc-editor.org/rfc/rfc1945#section-3.1 4 5/// HTTP/1.0 version token as it appears on the wire. 6pub const HTTP_10: &str = "HTTP/1.0";