[][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 handle_not_found(
    &self,
    path: &Path,
    out_headers: &mut HeaderMap
) -> (StatusCode, Bytes)
[src]

Handles not found directory

pub fn list_dir(&self, path: &Path, dir: ReadDir) -> Bytes[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: Clone> Clone for StaticFiles<C>[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for StaticFiles<DefaultConfig>[src]

impl<C: 'static + StaticFileConfig + Clone> NewService<()> for StaticFiles<C>[src]

type Request = ServiceRequest

Requests handled by the service.

type Response = ServiceResponse

Responses given by the service

type Error = Error

Errors produced by the service

type Service = Self

The Service value created by this factory

type InitError = ()

Errors produced while building a service.

type Future = FutureResult<Self::Service, Self::InitError>

The future of the Service instance.

default fn apply<T, T1, B, B1>(
    self,
    transform: T1,
    service: B1
) -> AndThenTransform<T, Self, B, Config> where
    B: NewService<Config, InitError = Self::InitError>,
    B1: IntoNewService<B, Config>,
    T: Transform<<B as NewService<Config>>::Service, Request = Self::Response, InitError = Self::InitError>,
    T1: IntoTransform<T, <B as NewService<Config>>::Service>,
    <T as Transform<<B as NewService<Config>>::Service>>::Error: From<Self::Error>, 
[src]

Apply transform service to specified service and use it as a next service in chain. Read more

default fn apply_fn<B, I, F, Out>(
    self,
    service: I,
    f: F
) -> AndThenApplyNewService<Self, B, F, Out, Config> where
    B: NewService<Config, Error = Self::Error, InitError = Self::InitError>,
    F: FnMut(Self::Response, &mut <B as NewService<Config>>::Service) -> Out,
    I: IntoNewService<B, Config>,
    Out: IntoFuture,
    <Out as IntoFuture>::Error: Into<Self::Error>, 
[src]

Apply function to specified service and use it as a next service in chain. Read more

default fn apply_cfg<F, C, S, U>(
    self,
    service: U,
    f: F
) -> AndThenNewService<Self, ApplyConfig<F, S, Config, C>, Config> where
    F: Fn(&Config) -> C,
    S: NewService<C, Request = Self::Response, Error = Self::Error, InitError = Self::InitError>,
    U: IntoNewService<S, C>, 
[src]

Map this service's config type to a different config, and use for nested service Read more

default fn and_then<F, B>(
    self,
    new_service: F
) -> AndThenNewService<Self, B, Config> where
    B: NewService<Config, Request = Self::Response, Error = Self::Error, InitError = Self::InitError>,
    F: IntoNewService<B, Config>, 
[src]

Call another service after call to this one has resolved successfully.

default fn from_err<E>(self) -> FromErrNewService<Self, E, Config> where
    E: From<Self::Error>, 
[src]

NewService that create service to map this service's error and new service's init error to any error implementing From for this servicesError`. Read more

default fn then<F, B>(self, new_service: F) -> ThenNewService<Self, B, Config> where
    B: NewService<Config, Request = Result<Self::Response, Self::Error>, Error = Self::Error, InitError = Self::InitError>,
    F: IntoNewService<B, Config>, 
[src]

Create NewService to chain on a computation for when a call to the service finished, passing the result of the call to the next service B. Read more

default fn map<F, R>(self, f: F) -> MapNewService<Self, F, R, Config> where
    F: FnMut(Self::Response) -> R, 
[src]

Map this service's output to a different type, returning a new service of the resulting type. Read more

default fn map_err<F, E>(self, f: F) -> MapErrNewService<Self, F, E, Config> where
    F: Fn(Self::Error) -> E + Clone
[src]

Map this service's error to a different error, returning a new service.

default fn map_init_err<F, E>(self, f: F) -> MapInitErr<Self, F, E, Config> where
    F: Fn(Self::InitError) -> E, 
[src]

Map this service's init error to a different error, returning a new service.

impl<C: 'static + StaticFileConfig + Clone> Service for StaticFiles<C>[src]

type Request = ServiceRequest

Requests handled by the service.

type Response = ServiceResponse

Responses given by the service.

type Error = Error

Errors produced by the service.

type Future = FutureResult<Self::Response, Self::Error>

The future response value.

impl<C: 'static + StaticFileConfig + Clone> HttpServiceFactory<Box<dyn Stream<Item = Bytes, Error = PayloadError> + 'static>> for StaticFiles<C>[src]

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

type 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 = FutureResult<Response<Self::ResBody>, Self::Error>

The Future returned by this Service.

default fn poll_ready(&mut self) -> Result<Async<()>, Self::Error>[src]

Returns Ready when the service is able to process requests. Read more

impl<C: StaticFileConfig + Clone, Ctx> MakeService<Ctx> for StaticFiles<C>[src]

type 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 be returned by Services.

type Service = Self

The resolved Service from new_service().

type MakeError = Error

The error type that can be returned when creating a new Service.

type Future = FutureResult<Self::Service, Self::MakeError>

The future returned from new_service of a Service.

default fn poll_ready(&mut self) -> Result<Async<()>, Self::MakeError>[src]

Returns Ready when the constructor is ready to create a new Service. Read more

Auto Trait Implementations

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

impl<C = DefaultConfig> !Sync for StaticFiles<C>

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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]

impl<T, C> IntoNewService for T where
    T: NewService<C>, 
[src]

impl<T> ServiceExt for T where
    T: Service + ?Sized
[src]

default fn apply_fn<F, B, B1, Out>(
    self,
    service: B1,
    f: F
) -> AndThenApply<Self, B, F, Out> where
    B: Service<Error = Self::Error>,
    B1: IntoService<B>,
    F: FnMut(Self::Response, &mut B) -> Out,
    Out: IntoFuture,
    <Out as IntoFuture>::Error: Into<Self::Error>, 
[src]

Apply function to specified service and use it as a next service in chain. Read more

default fn and_then<F, B>(self, service: F) -> AndThen<Self, B> where
    B: Service<Request = Self::Response, Error = Self::Error>,
    F: IntoService<B>, 
[src]

Call another service after call to this one has resolved successfully. Read more

default fn from_err<E>(self) -> FromErr<Self, E> where
    E: From<Self::Error>, 
[src]

Map this service's error to any error implementing From for this servicesError`. Read more

default fn then<B>(self, service: B) -> Then<Self, B> where
    B: Service<Request = Result<Self::Response, Self::Error>, Error = Self::Error>, 
[src]

Chain on a computation for when a call to the service finished, passing the result of the call to the next service B. Read more

default fn map<F, R>(self, f: F) -> Map<Self, F, R> where
    F: FnMut(Self::Response) -> R, 
[src]

Map this service's output to a different type, returning a new service of the resulting type. Read more

default fn map_err<F, E>(self, f: F) -> MapErr<Self, F, E> where
    F: Fn(Self::Error) -> E, 
[src]

Map this service's error to a different error, returning a new service. Read more

impl<T> IntoService for T where
    T: Service
[src]

impl<T, C> IntoConfigurableNewService for T where
    T: NewService<C>, 
[src]

impl<T> Erased for T

impl<N, Ctx> MakeService for N where
    N: NewService
[src]

type ReqBody = <N as NewService>::ReqBody

The Payload body of the http::Request.

type ResBody = <N as NewService>::ResBody

The Payload body of the http::Response.

type Error = <N as NewService>::Error

The error type that can be returned by Services.

type Service = <N as NewService>::Service

The resolved Service from new_service().

type Future = <N as NewService>::Future

The future returned from new_service of a Service.

type MakeError = <N as NewService>::InitError

The error type that can be returned when creating a new Service.