[][src]Trait openapi_context::request_parser::RequestParser

pub trait RequestParser<B> {
    fn parse_operation_id(req: &Request<B>) -> Result<&'static str, ()>;
}

A trait for retrieving swagger-related information from a request.

This allows other middlewares to retrieve API-related information from a request that may not have been handled by the autogenerated API code yet. For example, a statistics tracking service may wish to use this to count requests per-operation.

The trait is automatically implemented by swagger-codegen.

Required methods

fn parse_operation_id(req: &Request<B>) -> Result<&'static str, ()>

Retrieve the Swagger operation identifier that matches this request.

Returns Err(()) if this request does not match any known operation on this API.

Loading content...

Implementors

Loading content...