Struct hyper_staticfile::Static[][src]

pub struct Static {
    pub root: PathBuf,
    pub cache_headers: Option<u32>,
}

High-level interface for serving static files.

This struct serves files from a single root path, which may be absolute or relative. The request is mapped onto the filesystem by appending their URL path to the root path. If the filesystem path corresponds to a regular file, the service will attempt to serve it. Otherwise, if the path corresponds to a directory containing an index.html, the service will attempt to serve that instead.

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.

This struct also implements the hyper::Service trait, which simply wraps Static::serve.

Fields

The root directory path to serve files from.

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

Methods

impl Static
[src]

Create a new instance of Static with a given root path.

If Path::new("") is given, files will be served from the current directory.

Add cache headers to responses for the given lifespan.

Serve a request.

Trait Implementations

impl Clone for Static
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Service for Static
[src]

The Payload body of the http::Request.

The Payload body of the http::Response.

The error type that can occur within this `Service. Read more

The Future returned by this Service.

Calls this Service with a request, returning a Future of the response.

Auto Trait Implementations

impl Send for Static

impl Sync for Static