Struct saphir::SyncResponse[][src]

pub struct SyncResponse { /* fields omitted */ }

A Structure which represent a fully mutable http response

Methods

impl SyncResponse
[src]

Set the HTTP status for this response.

This function will configure the HTTP status code of the Response that will be returned from Builder::build.

By default this is 200.

Examples


let response = SyncResponse::new()
    .status(200)
    .build_response()
    .unwrap();

Set the HTTP version for this response.

This function will configure the HTTP version of the Response that will be returned from Builder::build.

By default this is HTTP/1.1

Examples


let response = SyncResponse::new()
    .version(Version::HTTP_2)
    .build_response()
    .unwrap();

Appends a header to this response builder.

This function will append the provided key/value as a header to the internal HeaderMap being constructed. Essentially this is equivalent to calling HeaderMap::append.

Examples


let response = SyncResponse::new()
    .header("Content-Type", "text/html")
    .header("X-Custom-Foo", "bar")
    .build_response()
    .unwrap();

A convinient function to constuct the response headers from a Headers struct

Adds an extension to this builder

Examples


let response = SyncResponse::new()
    .extension("My Extension")
    .build_response()
    .unwrap();

assert_eq!(response.extensions().get::<&'static str>(),
           Some(&"My Extension"));

Adds a body to a response

Examples


let response = SyncResponse::new()
    .body(b"this is a payload")
    .build_response()
    .unwrap();

Auto Trait Implementations

impl !Send for SyncResponse

impl !Sync for SyncResponse