Skip to main content

Component

Enum Component 

Source
pub enum Component {
    Method,
    Authority,
    Path,
    Query,
    RequestTarget,
    Status,
    Req(Box<Component>),
    Header(String),
}
Expand description

A covered component of an HTTP message signature.

This crate supports the derived components @method, @authority, @path, @query, @request-target and @status, plus plain header fields and the ;req component parameter. @target-uri and the other parameters (for example ;sf or ;key) are not modeled.

Variants§

§

Method

The request method (@method).

§

Authority

The request authority (@authority), lowercased.

§

Path

The absolute path (@path).

§

Query

The query string including the leading ? (@query).

§

RequestTarget

The request target (@request-target): the absolute path followed by ? and the query when one is present (RFC 9421 Section 2.2.5, origin-form). The WIMSE profile requires this component to be signed.

§

Status

The response status code (@status), RFC 9421 Section 2.2.9. Only meaningful on a response.

§

Req(Box<Component>)

A component taken from the request a response answers, written with the ;req parameter (RFC 9421 Section 2.4) — for example "@method";req. The WIMSE profile requires two of these on a signed response, so that the response cannot be lifted onto a different request.

§

Header(String)

A header field, identified by its lowercase name.

Implementations§

Source§

impl Component

Source

pub fn header(name: &str) -> Self

A header component from any-case name.

Source

pub fn quoted_id(&self) -> String

The quoted component identifier as it appears in the signature base and the inner list (for example "@method" or "content-type").

Source

pub fn from_quoted_id(token: &str) -> Result<Self, HttpSigError>

Parses a quoted component identifier back into a Component.

§Errors

Returns HttpSigError::UnsupportedComponent for an identifier this crate does not model (including any carrying parameters), and HttpSigError::Parse if the token is not a quoted string.

Trait Implementations§

Source§

impl Clone for Component

Source§

fn clone(&self) -> Component

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for Component

Source§

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

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

impl Eq for Component

Source§

impl PartialEq for Component

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

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

Inequality operator !=. Read more

Auto Trait Implementations§

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, dest: *mut u8)

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

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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, 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.