Struct ntex::web::dev::WebServiceAdapter[][src]

pub struct WebServiceAdapter { /* fields omitted */ }
Expand description

Create service adapter for a specific path.

use ntex::web::{self, guard, App, HttpResponse, Error, DefaultError};

async fn my_service(req: web::WebRequest<DefaultError>) -> Result<web::WebResponse, Error> {
    Ok(req.into_response(HttpResponse::Ok().finish()))
}

let app = App::new().service(
    web::service("/users/*")
        .guard(guard::Header("content-type", "text/plain"))
        .finish(my_service)
);

Implementations

Create new WebServiceAdapter instance.

Set service name.

Name is used for url generation.

Add match guard to a web service.

use ntex::web::{self, guard, App, DefaultError, Error, HttpResponse};

async fn index(req: web::WebRequest<DefaultError>) -> Result<web::WebResponse, Error> {
    Ok(req.into_response(HttpResponse::Ok().finish()))
}

fn main() {
    let app = App::new()
        .service(
            web::service("/app")
                .guard(guard::Header("content-type", "text/plain"))
                .finish(index)
        );
}

Set a service factory implementation and generate web service.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more