Struct hyper_staticfile::ResponseBuilder [−][src]
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
cache_headers: Option<u32>
Whether to send cache headers, and what lifespan to indicate.
Methods
impl ResponseBuilder
[src]
impl ResponseBuilder
pub fn new() -> Self
[src]
pub fn new() -> Self
Create a new builder with a default configuration.
pub fn cache_headers(&mut self, value: Option<u32>) -> &mut Self
[src]
pub fn cache_headers(&mut self, value: Option<u32>) -> &mut Self
Add cache headers to responses for the given lifespan.
pub fn build<B>(
&self,
req: &Request<B>,
result: ResolveResult
) -> Result<Response<Body>>
[src]
pub fn build<B>(
&self,
req: &Request<B>,
result: ResolveResult
) -> Result<Response<Body>>
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]
impl Clone for ResponseBuilder
fn clone(&self) -> ResponseBuilder
[src]
fn clone(&self) -> ResponseBuilder
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for ResponseBuilder
[src]
impl Debug for ResponseBuilder
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Default for ResponseBuilder
[src]
impl Default for ResponseBuilder
fn default() -> ResponseBuilder
[src]
fn default() -> ResponseBuilder
Returns the "default value" for a type. Read more
Auto Trait Implementations
impl Send for ResponseBuilder
impl Send for ResponseBuilder
impl Sync for ResponseBuilder
impl Sync for ResponseBuilder