[][src]Struct actix_web_static_files::ResourceFiles

pub struct ResourceFiles { /* fields omitted */ }

Static resource files handling

ResourceFiles service must be registered with App::service method.

use std::collections::HashMap;

use actix_web::App;

fn main() {
// serve root directory with default options:
// - resolve index.html
    let files: HashMap<&'static str, actix_web_static_files::Resource> = HashMap::new();
    let app = App::new()
        .service(actix_web_static_files::ResourceFiles::new("/", files));
// or subpath with additional option to not resolve index.html
    let files: HashMap<&'static str, actix_web_static_files::Resource> = HashMap::new();
    let app = App::new()
        .service(actix_web_static_files::ResourceFiles::new("/imgs", files)
            .do_not_resolve_defaults());
}

Implementations

impl ResourceFiles[src]

pub fn new(path: &str, files: HashMap<&'static str, Resource>) -> Self[src]

pub fn do_not_resolve_defaults(self) -> Self[src]

By default trying to resolve '.../' to '.../index.html' if it exists. Turn off this resolution by calling this function.

Trait Implementations

impl Deref for ResourceFiles[src]

type Target = ResourceFilesInner

The resulting type after dereferencing.

impl HttpServiceFactory for ResourceFiles[src]

impl ServiceFactory for ResourceFiles[src]

type Config = ()

Service factory configuration.

type Request = ServiceRequest

Requests handled by the created services.

type Response = ServiceResponse

Responses given by the created services.

type Error = Error

Errors produced by the created services.

type Service = ResourceFilesService

The kind of Service created by this factory.

type InitError = ()

Errors potentially raised while building a service.

type Future = LocalBoxFuture<'static, Result<Self::Service, Self::InitError>>

The future of the Service instance.

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoServiceFactory<T> for T where
    T: ServiceFactory
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,