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

This trait is used to document a dynamic path segment that implements FromSegments. For example <param..> in route path.

Required Methods

Return a Parameter containing the information required to document the FromSegments path parameter.

Implementors