[][src]Struct dropshot::ApiEndpoint

pub struct ApiEndpoint {
    pub operation_id: String,
    pub handler: Box<dyn RouteHandler>,
    pub method: Method,
    pub path: String,
    pub parameters: Vec<ApiEndpointParameter>,
    pub response: ApiEndpointResponse,
    pub description: Option<String>,
    pub tags: Vec<String>,
}

ApiEndpoint represents a single API endpoint associated with an ApiDescription. It has a handler, HTTP method (e.g. GET, POST), and a path-- provided explicitly--as well as parameters and a description which can be inferred from function parameter types and doc comments (respectively).

Fields

operation_id: Stringhandler: Box<dyn RouteHandler>method: Methodpath: Stringparameters: Vec<ApiEndpointParameter>response: ApiEndpointResponsedescription: Option<String>tags: Vec<String>

Implementations

impl<'a> ApiEndpoint[src]

pub fn new<HandlerType, FuncParams, ResponseType>(
    operation_id: String,
    handler: HandlerType,
    method: Method,
    path: &'a str
) -> Self where
    HandlerType: HttpHandlerFunc<FuncParams, ResponseType>,
    FuncParams: Extractor + 'static,
    ResponseType: HttpResponse + Send + Sync + 'static, 
[src]

pub fn description<T: ToString>(self, description: T) -> Self[src]

pub fn tag<T: ToString>(self, tag: T) -> Self[src]

Trait Implementations

impl Debug for ApiEndpoint[src]

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

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