Struct hyper_staticfile::ResponseBuilder[][src]

pub struct ResponseBuilder {
    pub cache_headers: Option<u32>,
}

Utility to build the default response for a resolve result.

This struct allows direct access to its fields, but these fields are typically initialized by the accessors, using the builder pattern. The fields are basically a bunch of settings that determine the response details.

Fields

Whether to send cache headers, and what lifespan to indicate.

Methods

impl ResponseBuilder
[src]

Create a new builder with a default configuration.

Add cache headers to responses for the given lifespan.

Build a response for the given request and resolve result.

This function may error if it response could not be constructed, but this should be a seldom occurrence.

Trait Implementations

impl Clone for ResponseBuilder
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ResponseBuilder
[src]

Formats the value using the given formatter. Read more

impl Default for ResponseBuilder
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for ResponseBuilder

impl Sync for ResponseBuilder