Struct actix_web::web::ServiceConfig[][src]

pub struct ServiceConfig { /* fields omitted */ }

Enables parts of app configuration to be declared separately from the app itself. Helpful for modularizing large applications.

Merge a ServiceConfig into an app using App::configure. Scope and resources services have similar methods.

use actix_web::{web, App, HttpResponse};

// this function could be located in different module
fn config(cfg: &mut web::ServiceConfig) {
    cfg.service(web::resource("/test")
        .route(web::get().to(|| HttpResponse::Ok()))
        .route(web::head().to(|| HttpResponse::MethodNotAllowed()))
    );
}

// merge `/test` routes from config function to App
App::new().configure(config);

Implementations

impl ServiceConfig[src]

pub fn data<U: 'static>(&mut self, data: U) -> &mut Self[src]

Add shared app data item.

Counterpart to App::data().

pub fn app_data<U: 'static>(&mut self, ext: U) -> &mut Self[src]

Add arbitrary app data item.

Counterpart to App::app_data().

pub fn route(&mut self, path: &str, route: Route) -> &mut Self[src]

Configure route for a specific path.

Counterpart to App::route().

pub fn service<F>(&mut self, factory: F) -> &mut Self where
    F: HttpServiceFactory + 'static, 
[src]

Register HTTP service factory.

Counterpart to App::service().

pub fn external_resource<N, U>(&mut self, name: N, url: U) -> &mut Self where
    N: AsRef<str>,
    U: AsRef<str>, 
[src]

Register an external resource.

External resources are useful for URL generation purposes only and are never considered for matching at request time. Calls to HttpRequest::url_for() will work as expected.

Counterpart to App::external_resource().

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, U> Into<U> for T where
    U: From<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]

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>,