Struct actix_web::Reply [] [src]

pub struct Reply(_);

Represents response process.

Methods

impl Reply
[src]

[src]

Create async response

[src]

Send response

Trait Implementations

impl Responder for Reply
[src]

The associated item which can be returned.

The associated error which can be returned.

[src]

Convert itself to Reply or Error.

impl From<HttpResponse> for Reply
[src]

[src]

Performs the conversion.

impl<E: Into<Error>> From<Result<Reply, E>> for Reply
[src]

[src]

Performs the conversion.

impl<E: Into<Error>> From<Result<HttpResponse, E>> for Reply
[src]

[src]

Performs the conversion.

impl From<Box<Future<Item = HttpResponse, Error = Error>>> for Reply
[src]

[src]

Performs the conversion.

impl From<StaticResponse> for Reply
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl !Send for Reply

impl !Sync for Reply