Struct headers::AccessControlMaxAge
source · [−]pub struct AccessControlMaxAge(_);
Expand description
Access-Control-Max-Age
header, part of
CORS
The Access-Control-Max-Age
header indicates how long the results of a
preflight request can be cached in a preflight result cache.
ABNF
Access-Control-Max-Age = \"Access-Control-Max-Age\" \":\" delta-seconds
Example values
531
Examples
use std::time::Duration;
use headers::AccessControlMaxAge;
let max_age = AccessControlMaxAge::from(Duration::from_secs(531));
Trait Implementations
sourceimpl Clone for AccessControlMaxAge
impl Clone for AccessControlMaxAge
sourcefn clone(&self) -> AccessControlMaxAge
fn clone(&self) -> AccessControlMaxAge
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AccessControlMaxAge
impl Debug for AccessControlMaxAge
sourceimpl From<AccessControlMaxAge> for Duration
impl From<AccessControlMaxAge> for Duration
sourcefn from(acma: AccessControlMaxAge) -> Duration
fn from(acma: AccessControlMaxAge) -> Duration
Converts to this type from the input type.
sourceimpl From<Duration> for AccessControlMaxAge
impl From<Duration> for AccessControlMaxAge
sourcefn from(dur: Duration) -> AccessControlMaxAge
fn from(dur: Duration) -> AccessControlMaxAge
Converts to this type from the input type.
sourceimpl Hash for AccessControlMaxAge
impl Hash for AccessControlMaxAge
sourceimpl Header for AccessControlMaxAge
impl Header for AccessControlMaxAge
sourcefn name() -> &'static HeaderName
fn name() -> &'static HeaderName
The name of this header.
sourceimpl Ord for AccessControlMaxAge
impl Ord for AccessControlMaxAge
sourceimpl PartialEq<AccessControlMaxAge> for AccessControlMaxAge
impl PartialEq<AccessControlMaxAge> for AccessControlMaxAge
sourcefn eq(&self, other: &AccessControlMaxAge) -> bool
fn eq(&self, other: &AccessControlMaxAge) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AccessControlMaxAge) -> bool
fn ne(&self, other: &AccessControlMaxAge) -> bool
This method tests for !=
.
sourceimpl PartialOrd<AccessControlMaxAge> for AccessControlMaxAge
impl PartialOrd<AccessControlMaxAge> for AccessControlMaxAge
sourcefn partial_cmp(&self, other: &AccessControlMaxAge) -> Option<Ordering>
fn partial_cmp(&self, other: &AccessControlMaxAge) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Eq for AccessControlMaxAge
impl StructuralEq for AccessControlMaxAge
impl StructuralPartialEq for AccessControlMaxAge
Auto Trait Implementations
impl RefUnwindSafe for AccessControlMaxAge
impl Send for AccessControlMaxAge
impl Sync for AccessControlMaxAge
impl Unpin for AccessControlMaxAge
impl UnwindSafe for AccessControlMaxAge
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)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more