Struct hyper_staticfile::Static [−][src]
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
root: PathBuf
The root directory path to serve files from.
cache_headers: Option<u32>
Whether to send cache headers, and what lifespan to indicate.
Methods
impl Static
[src]
[−]
impl Static
pub fn new<P: Into<PathBuf>>(root: P) -> Self
[src]
[−]
pub fn new<P: Into<PathBuf>>(root: P) -> Self
Create a new instance of Static
with a given root path.
If Path::new("")
is given, files will be served from the current directory.
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 serve<B>(&self, request: Request<B>) -> StaticFuture<B>
[src]
[−]
pub fn serve<B>(&self, request: Request<B>) -> StaticFuture<B>
Serve a request.