[][src]Struct rocket_cors::Responder

pub struct Responder<'r, R> { /* fields omitted */ }

A Responder which will simply wraps another Responder with CORS headers.

The following CORS headers will be overwritten:

The following headers will be merged:

See the documentation at the crate root for usage information.

Trait Implementations

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

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

Auto Trait Implementations

impl<'r, R> !Send for Responder<'r, R>

impl<'r, R> !Sync for Responder<'r, R>

impl<'r, R> !Unpin for Responder<'r, R>

impl<'r, R> !UnwindSafe for Responder<'r, R>

impl<'r, R> !RefUnwindSafe for Responder<'r, R>

Blanket Implementations

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

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

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

impl<T> IntoCollection<T> for T

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