[][src]Struct http_fs::StaticFiles

pub struct StaticFiles<C = DefaultConfig> { /* fields omitted */ }

Static files service

Methods

impl<C: StaticFileConfig> StaticFiles<C>[src]

pub fn new(config: C) -> Self[src]

Creates new instance with provided config

pub fn workers(&self) -> &ThreadPool[src]

Returns reference to thread pool

pub fn serve(&self, path: &Path) -> ServeEntry[src]

Serves file

pub fn list_dir(&self, path: &Path, dir: ReadDir) -> String[src]

Serve directory routine

pub fn serve_file(
    &self,
    path: &Path,
    file: File,
    meta: Metadata,
    method: Method,
    headers: &HeaderMap,
    out_headers: &mut HeaderMap
) -> (StatusCode, Option<ChunkedReadFile<C::FileService>>)
[src]

Serves file routine

Trait Implementations

impl<C> Drop for StaticFiles<C>[src]

impl Default for StaticFiles<DefaultConfig>[src]

Auto Trait Implementations

impl<C> Send for StaticFiles<C> where
    C: Send

impl<C> Sync for StaticFiles<C> where
    C: Sync

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]