pub struct Allow(_);
Expand description
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>();
Implementations
Trait Implementations
sourceimpl FromIterator<Method> for Allow
impl FromIterator<Method> for Allow
sourcefn from_iter<I>(iter: I) -> Self where
I: IntoIterator<Item = Method>,
fn from_iter<I>(iter: I) -> Self where
I: IntoIterator<Item = Method>,
Creates a value from an iterator. Read more
sourceimpl Header for Allow
impl Header for Allow
sourcefn name() -> &'static HeaderName
fn name() -> &'static HeaderName
The name of this header.
impl StructuralPartialEq for Allow
Auto Trait Implementations
impl RefUnwindSafe for Allow
impl Send for Allow
impl Sync for Allow
impl Unpin for Allow
impl UnwindSafe for Allow
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more