Struct viz_core::headers::ContentLocation
source · pub struct ContentLocation(_);Expand description
Content-Location header, defined in
RFC7231
The header can be used by both the client in requests and the server
in responses with different semantics. Client sets Content-Location
to refer to the URI where original representation of the body was
obtained.
In responses Content-Location represents URI for the representation
that was content negotiated, created or for the response payload.
ABNF
Content-Location = absolute-URI / partial-URIExample values
/hypertext/Overview.htmlhttp://www.example.org/hypertext/Overview.html
Examples
Trait Implementations§
source§impl Clone for ContentLocation
impl Clone for ContentLocation
source§fn clone(&self) -> ContentLocation
fn clone(&self) -> ContentLocation
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ContentLocation
impl Debug for ContentLocation
source§impl Header for ContentLocation
impl Header for ContentLocation
source§fn name() -> &'static HeaderName
fn name() -> &'static HeaderName
The name of this header.
source§fn decode<'i, I>(values: &mut I) -> Result<ContentLocation, Error>where
I: Iterator<Item = &'i HeaderValue>,
fn decode<'i, I>(values: &mut I) -> Result<ContentLocation, Error>where
I: Iterator<Item = &'i HeaderValue>,
Decode this type from an iterator of
HeaderValues.