Enum hyper_staticfile::ResolveResult [−][src]
pub enum ResolveResult { MethodNotMatched, UriNotMatched, NotFound, PermissionDenied, IsDirectory, Found(File, Metadata), }
The result of resolve
.
Covers all the possible 'normal' scenarios encountered when serving static files.
Variants
MethodNotMatched
The request was not GET
or HEAD
request,
UriNotMatched
The request URI was not just a path.
NotFound
The requested file does not exist.
PermissionDenied
The requested file could not be accessed.
IsDirectory
A directory was requested as a file.
Found(File, Metadata)
The requested file was found.
Trait Implementations
impl Debug for ResolveResult
[src]
impl Debug for ResolveResult
Auto Trait Implementations
impl Send for ResolveResult
impl Send for ResolveResult
impl Sync for ResolveResult
impl Sync for ResolveResult