Trait rocket_okapi_fork::request::OpenApiFromParam[][src]

pub trait OpenApiFromParam<'r>: FromParam<'r> {
    fn path_parameter(
        gen: &mut OpenApiGenerator,
        name: String
    ) -> Result<Parameter>; }
Expand description

This trait means that the implementer can be used as a FromParam request guard, and that this can also be documented.

Required methods

Return a RequestBody containing the information required to document the FromParam for implementer. Path paremeters.

Implementations on Foreign Types

Implementors