Enum hyper_staticfile::ResolveResult[][src]

pub enum ResolveResult {
    MethodNotMatched,
    UriNotMatched,
    NotFound,
    PermissionDenied,
    IsDirectory,
    Found(FileMetadata),
}

The result of resolve.

Covers all the possible 'normal' scenarios encountered when serving static files.

Variants

The request was not GET or HEAD request,

The request URI was not just a path.

The requested file does not exist.

The requested file could not be accessed.

A directory was requested as a file.

The requested file was found.

Trait Implementations

impl Debug for ResolveResult
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ResolveResult

impl Sync for ResolveResult