[][src]Trait http_fs::config::StaticFileConfig

pub trait StaticFileConfig {
    type FileService: FileServeConfig + 'static;
    type DirService: DirectoryListingConfig;
    fn is_method_allowed(method: &Method) -> bool { ... }
fn serve_dir(&self) -> &Path { ... }
fn index_file(&self, _path: &Path) -> Option<&Path> { ... }
fn handle_directory(&self, _path: &Path) -> bool { ... }
fn thread_pool_builder(builder: Builder) -> Builder { ... } }

Configuration description

Associated Types

type FileService: FileServeConfig + 'static

File serve configuration

type DirService: DirectoryListingConfig

Directory serve configuration

Loading content...

Provided methods

fn is_method_allowed(method: &Method) -> bool

Returns whether specified method is allowed for use. By default allows HEAD and GET

fn serve_dir(&self) -> &Path

Returns directory from where to serve files.

By default returns .

fn index_file(&self, _path: &Path) -> Option<&Path>

Returns name of index file to show.

path is always points to directory relative to StaticFileConfig::serve_dir.

By default returns None

fn handle_directory(&self, _path: &Path) -> bool

Returns whether directory should be listed on access

By default returns false

fn thread_pool_builder(builder: Builder) -> Builder

Describes how to configure thread pool.

By default sets prefix http-fs and leaves everything else by default

Loading content...

Implementors

impl StaticFileConfig for DefaultConfig[src]

type FileService = Self

type DirService = Self

fn is_method_allowed(method: &Method) -> bool[src]

fn serve_dir(&self) -> &Path[src]

fn index_file(&self, _path: &Path) -> Option<&Path>[src]

fn handle_directory(&self, _path: &Path) -> bool[src]

fn thread_pool_builder(builder: Builder) -> Builder[src]

Loading content...