[−][src]Struct actix_web_static_files::ResourceFiles
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.
fn deref(&self) -> &Self::Target[src]
impl HttpServiceFactory for ResourceFiles[src]
fn register(self, config: &mut AppService)[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.
fn new_service(&self, _: ()) -> Self::Future[src]
fn map<F, R>(self, f: F) -> MapServiceFactory<Self, F, R> where
F: FnMut(Self::Response) -> R + Clone, [src]
F: FnMut(Self::Response) -> R + Clone,
fn map_err<F, E>(self, f: F) -> MapErrServiceFactory<Self, F, E> where
F: Fn(Self::Error) -> E + Clone, [src]
F: Fn(Self::Error) -> E + Clone,
fn map_init_err<F, E>(self, f: F) -> MapInitErr<Self, F, E> where
F: Fn(Self::InitError) -> E + Clone, [src]
F: Fn(Self::InitError) -> E + Clone,
Auto Trait Implementations
impl !RefUnwindSafe for ResourceFiles
impl !Send for ResourceFiles
impl !Sync for ResourceFiles
impl Unpin for ResourceFiles
impl UnwindSafe for ResourceFiles
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
fn instrument(self, span: Span) -> Instrumented<Self>[src]
fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> IntoServiceFactory<T> for T where
T: ServiceFactory, [src]
T: ServiceFactory,
fn into_factory(self) -> T[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]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,