[][src]Struct rocket_cors::ManualResponder

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

A Manual Responder used in the "truly manual" mode of operation.

See the documentation at the crate root for usage information.

Trait Implementations

impl<'r, F, R> Responder<'r> for ManualResponder<'r, F, R> where
    F: FnOnce(Guard<'r>) -> R + 'r,
    R: Responder<'r>, 
[src]

Auto Trait Implementations

impl<'r, F, R> Send for ManualResponder<'r, F, R> where
    F: Send,
    R: Send

impl<'r, F, R> Sync for ManualResponder<'r, F, R> where
    F: Sync,
    R: Sync

impl<'r, F, R> Unpin for ManualResponder<'r, F, R> where
    F: Unpin,
    R: Unpin

impl<'r, F, R> !UnwindSafe for ManualResponder<'r, F, R>

impl<'r, F, R> !RefUnwindSafe for ManualResponder<'r, F, 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,