[][src]Enum rocket_cache_response::CacheResponsePro

pub enum CacheResponsePro<'r, R: Responder<'r>> {
    Public {
        responder: R,
        max_age: u32,
        must_revalidate: bool,
    },
    Private {
        responder: R,
        max_age: u32,
    },
    NoCache(R),
    NoStore(R),
    NoCacheControl(R),
    // some variants omitted
}

The responder with a Cache-Control header.

Variants

Public

Fields of Public

responder: Rmax_age: u32must_revalidate: bool
Private

Fields of Private

responder: Rmax_age: u32
NoCache(R)
NoStore(R)
NoCacheControl(R)

Implementations

impl<'r, R: Responder<'r>> CacheResponsePro<'r, R>[src]

pub fn public_only_release(
    responder: R,
    _max_age: u32,
    _must_revalidate: bool
) -> CacheResponsePro<'r, R>
[src]

Use public cache only when this program is built on the release mode.

pub fn private_only_release(
    responder: R,
    _max_age: u32
) -> CacheResponsePro<'r, R>
[src]

Use private cache only when this program is built on the release mode.

Trait Implementations

impl<'r, R: Debug + Responder<'r>> Debug for CacheResponsePro<'r, R>[src]

impl<'r, R: Responder<'r>> Responder<'r> for CacheResponsePro<'r, R>[src]

Auto Trait Implementations

impl<'r, R> RefUnwindSafe for CacheResponsePro<'r, R> where
    R: RefUnwindSafe

impl<'r, R> Send for CacheResponsePro<'r, R> where
    R: Send + Sync

impl<'r, R> Sync for CacheResponsePro<'r, R> where
    R: Sync

impl<'r, R> Unpin for CacheResponsePro<'r, R> where
    R: Unpin

impl<'r, R> UnwindSafe for CacheResponsePro<'r, R> where
    R: RefUnwindSafe + UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, I> AsResult<T, I> for T where
    I: Input, 

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoCollection<T> for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any

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