[][src]Struct actix_swagger::Answer

pub struct Answer<'a, T> { /* fields omitted */ }

Strict answer to complain with generated code by cargo-swagg

Methods

impl<'a, T: Serialize> Answer<'a, T>[src]

pub fn new(response: T) -> Answer<'a, T>[src]

pub fn header<V>(self, key: String, value: V) -> Self where
    V: IntoHeaderValue
[src]

Set header to answer

pub fn cookie(self, cookie: Cookie<'a>) -> Self[src]

Add cookie to answer

pub fn status(self, status: StatusCode) -> Self[src]

Set status code

pub fn content_type(self, content_type: Option<ContentType>) -> Self[src]

Set content-type Content-Type changes serializer for answer

pub fn to_string(&self) -> Result<String, Error>[src]

Serialize answer

Trait Implementations

impl<'a, T: Serialize> Responder for Answer<'a, T>[src]

type Error = Error

The associated error which can be returned.

type Future = Ready<Result<Response, Error>>

The future response value.

Auto Trait Implementations

impl<'a, T> RefUnwindSafe for Answer<'a, T> where
    T: RefUnwindSafe

impl<'a, T> Send for Answer<'a, T> where
    T: Send

impl<'a, T> Sync for Answer<'a, T> where
    T: Sync

impl<'a, T> Unpin for Answer<'a, T> where
    T: Unpin

impl<'a, T> UnwindSafe for Answer<'a, T> where
    T: UnwindSafe

Blanket Implementations

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

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, 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<V, T> VZip<V> for T where
    V: MultiLane<T>,