http_types::proxies

Struct Forwarded

Source
pub struct Forwarded<'a> { /* private fields */ }
Expand description

A rust representation of the forwarded header.

Implementations§

Source§

impl<'a> Forwarded<'a>

Source

pub fn from_headers( headers: &'a impl AsRef<Headers>, ) -> Result<Option<Self>, ParseError>

Attempts to parse a Forwarded from headers (or a request or response). Builds a borrowed Forwarded by default. To build an owned Forwarded, use Forwarded::from_headers(...).into_owned()

§X-Forwarded-For, -By, and -Proto compatability

This implementation includes fall-back support for the historical unstandardized headers x-forwarded-for, x-forwarded-by, and x-forwarded-proto. If you do not wish to support these headers, use Forwarded::from_forwarded_header. To only support these historical headers and not the standardized Forwarded header, use Forwarded::from_x_headers.

Please note that either way, this implementation will normalize to the standardized Forwarded header, as recommended in rfc7239§7.4

§Examples
let mut request = Request::new(Get, Url::parse("http://_/")?);
request.insert_header(
    "Forwarded",
    r#"for=192.0.2.43, for="[2001:db8:cafe::17]", for=unknown;proto=https"#
);
let forwarded = Forwarded::from_headers(&request)?.unwrap();
assert_eq!(forwarded.proto(), Some("https"));
assert_eq!(forwarded.forwarded_for(), vec!["192.0.2.43", "[2001:db8:cafe::17]", "unknown"]);
let mut request = Request::new(Get, Url::parse("http://_/")?);
request.insert_header("X-Forwarded-For", "192.0.2.43, 2001:db8:cafe::17, unknown");
request.insert_header("X-Forwarded-Proto", "https");
let forwarded = Forwarded::from_headers(&request)?.unwrap();
assert_eq!(forwarded.forwarded_for(), vec!["192.0.2.43", "[2001:db8:cafe::17]", "unknown"]);
assert_eq!(forwarded.proto(), Some("https"));
assert_eq!(
    forwarded.value()?,
    r#"for=192.0.2.43, for="[2001:db8:cafe::17]", for=unknown;proto=https"#
);
Source

pub fn from_forwarded_header( headers: &'a impl AsRef<Headers>, ) -> Result<Option<Self>, ParseError>

Parse a borrowed Forwarded from the Forwarded header, without x-forwarded-{for,by,proto} fallback

§Examples
let mut request = Request::new(Get, Url::parse("http://_/")?);
request.insert_header(
    "Forwarded",
    r#"for=192.0.2.43, for="[2001:db8:cafe::17]", for=unknown;proto=https"#
);
let forwarded = Forwarded::from_forwarded_header(&request)?.unwrap();
assert_eq!(forwarded.proto(), Some("https"));
assert_eq!(forwarded.forwarded_for(), vec!["192.0.2.43", "[2001:db8:cafe::17]", "unknown"]);
let mut request = Request::new(Get, Url::parse("http://_/")?);
request.insert_header("X-Forwarded-For", "192.0.2.43, 2001:db8:cafe::17");
assert!(Forwarded::from_forwarded_header(&request)?.is_none());
Source

pub fn from_x_headers( headers: &'a impl AsRef<Headers>, ) -> Result<Option<Self>, ParseError>

Parse a borrowed Forwarded from the historical non-standardized x-forwarded-{for,by,proto} headers, without support for the Forwarded header.

§Examples
let mut request = Request::new(Get, Url::parse("http://_/")?);
request.insert_header("X-Forwarded-For", "192.0.2.43, 2001:db8:cafe::17");
let forwarded = Forwarded::from_headers(&request)?.unwrap();
assert_eq!(forwarded.forwarded_for(), vec!["192.0.2.43", "[2001:db8:cafe::17]"]);
let mut request = Request::new(Get, Url::parse("http://_/")?);
request.insert_header(
    "Forwarded",
    r#"for=192.0.2.43, for="[2001:db8:cafe::17]", for=unknown;proto=https"#
);
assert!(Forwarded::from_x_headers(&request)?.is_none());
Source

pub fn parse(input: &'a str) -> Result<Self, ParseError>

parse a &str into a borrowed Forwarded

§Examples
let forwarded = Forwarded::parse(
    r#"for=192.0.2.43,         for="[2001:db8:cafe::17]", FOR=unknown;proto=https"#
)?;
assert_eq!(forwarded.forwarded_for(), vec!["192.0.2.43", "[2001:db8:cafe::17]", "unknown"]);
assert_eq!(
    forwarded.value()?,
    r#"for=192.0.2.43, for="[2001:db8:cafe::17]", for=unknown;proto=https"#
);
Source

pub fn into_owned(self) -> Forwarded<'static>

Transform a borrowed Forwarded into an owned Forwarded. This is a noop if the Forwarded is already owned.

Source

pub fn apply(&self, headers: impl AsMut<Headers>)

Insert a header that represents this Forwarded.

§Example
let mut response = http_types::Response::new(200);
let mut forwarded = http_types::proxies::Forwarded::new();
forwarded.add_for("192.0.2.43");
forwarded.add_for("[2001:db8:cafe::17]");
forwarded.set_proto("https");
forwarded.apply(&mut response);
assert_eq!(response["Forwarded"], r#"for=192.0.2.43, for="[2001:db8:cafe::17]";proto=https"#);
Source

pub fn value(&self) -> Result<String, Error>

Builds a Forwarded header as a String.

§Example
let mut forwarded = http_types::proxies::Forwarded::new();
forwarded.add_for("_haproxy");
forwarded.add_for("[2001:db8:cafe::17]");
forwarded.set_proto("https");
assert_eq!(forwarded.value()?, r#"for=_haproxy, for="[2001:db8:cafe::17]";proto=https"#);
Source

pub fn new() -> Self

Builds a new empty Forwarded

Source

pub fn add_for(&mut self, forwarded_for: impl Into<Cow<'a, str>>)

Adds a for section to this header

Source

pub fn forwarded_for(&self) -> Vec<&str>

Returns the for field of this header

Source

pub fn set_host(&mut self, host: impl Into<Cow<'a, str>>)

Sets the host field of this header

Source

pub fn host(&self) -> Option<&str>

Returns the host field of this header

Source

pub fn set_proto(&mut self, proto: impl Into<Cow<'a, str>>)

Sets the proto field of this header

Source

pub fn proto(&self) -> Option<&str>

Returns the proto field of this header

Source

pub fn set_by(&mut self, by: impl Into<Cow<'a, str>>)

Sets the by field of this header

Source

pub fn by(&self) -> Option<&str>

Returns the by field of this header

Trait Implementations§

Source§

impl<'a> Clone for Forwarded<'a>

Source§

fn clone(&self) -> Forwarded<'a>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a> Debug for Forwarded<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> Default for Forwarded<'a>

Source§

fn default() -> Forwarded<'a>

Returns the “default value” for a type. Read more
Source§

impl Display for Forwarded<'_>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> PartialEq for Forwarded<'a>

Source§

fn eq(&self, other: &Forwarded<'a>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl ToHeaderValues for &Forwarded<'_>

Source§

type Iter = IntoIter<HeaderValue>

Returned iterator over header values which this type may correspond to.
Source§

fn to_header_values(&self) -> Result<Self::Iter>

Converts this object to an iterator of resolved HeaderValues.
Source§

impl ToHeaderValues for Forwarded<'_>

Source§

type Iter = IntoIter<HeaderValue>

Returned iterator over header values which this type may correspond to.
Source§

fn to_header_values(&self) -> Result<Self::Iter>

Converts this object to an iterator of resolved HeaderValues.
Source§

impl<'a> TryFrom<&'a str> for Forwarded<'a>

Source§

type Error = ParseError

The type returned in the event of a conversion error.
Source§

fn try_from(value: &'a str) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<'a> Eq for Forwarded<'a>

Source§

impl<'a> StructuralPartialEq for Forwarded<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for Forwarded<'a>

§

impl<'a> RefUnwindSafe for Forwarded<'a>

§

impl<'a> Send for Forwarded<'a>

§

impl<'a> Sync for Forwarded<'a>

§

impl<'a> Unpin for Forwarded<'a>

§

impl<'a> UnwindSafe for Forwarded<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T