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 Staticpub fn new<P: Into<PathBuf>>(root: P) -> Self[src]
pub fn new<P: Into<PathBuf>>(root: P) -> SelfCreate 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 SelfAdd 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.
Trait Implementations
impl Clone for Static[src]
impl Clone for Staticfn clone(&self) -> Static[src]
fn clone(&self) -> StaticReturns 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 Service for Static[src]
impl Service for Statictype ReqBody = Body
The Payload body of the http::Request.
type ResBody = Body
The Payload body of the http::Response.
type Error = Error
The error type that can occur within this Service. Read more
type Future = StaticFuture<Body>
The Future returned by this Service.
fn call(&mut self, request: Request<Body>) -> Self::Future[src]
fn call(&mut self, request: Request<Body>) -> Self::FutureCalls this Service with a request, returning a Future of the response.