Source code

Revision control

Copy as Markdown

Other Tools

use HeaderValue;
/// `Location` header, defined in
///
/// The `Location` header field is used in some responses to refer to a
/// specific resource in relation to the response. The type of
/// relationship is defined by the combination of request method and
/// status code semantics.
///
/// # ABNF
///
/// ```text
/// Location = URI-reference
/// ```
///
/// # Example values
/// * `/People.html#tim`
///
/// # Examples
///
#[derive(Clone, Debug, PartialEq)]
pub struct Location(HeaderValue);
derive_header! {
Location(_),
name: LOCATION
}
#[cfg(test)]
mod tests {
use super::super::test_decode;
use super::*;
#[test]
fn absolute_uri() {
let loc = test_decode::<Location>(&[s]).unwrap();
assert_eq!(loc, Location(HeaderValue::from_static(s)));
}
#[test]
fn relative_uri_with_fragment() {
let s = "/People.html#tim";
let loc = test_decode::<Location>(&[s]).unwrap();
assert_eq!(loc, Location(HeaderValue::from_static(s)));
}
}