Struct headers_ext::Allow[][src]

pub struct Allow(_);

Allow header, defined in RFC7231

The Allow header field lists the set of methods advertised as supported by the target resource. The purpose of this field is strictly to inform the recipient of valid request methods associated with the resource.

ABNF

Allow = #method

Example values

  • GET, HEAD, PUT
  • OPTIONS, GET, PUT, POST, DELETE, HEAD, TRACE, CONNECT, PATCH, fOObAr
  • ``

Examples

extern crate http;
use headers::Allow;
use http::Method;

let allow = vec![Method::GET, Method::POST]
    .into_iter()
    .collect::<Allow>();

Methods

impl Allow
[src]

Returns an iterator over Methods contained within.

Trait Implementations

impl Clone for Allow
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Allow
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Allow
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl FromIterator<Method> for Allow
[src]

Creates a value from an iterator. Read more

Auto Trait Implementations

impl Send for Allow

impl Sync for Allow