pub trait DrawResourceRoutesWithSchema {
    // Required method
    fn endpoint<E: 'static + EndpointWithSchema>(&mut self);
}
Expand description

This trait allows to draw routes within an resource. Use this only inside the Resource::setup method.

Required Methods§

source

fn endpoint<E: 'static + EndpointWithSchema>(&mut self)

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a, 'b, C, P> DrawResourceRoutesWithSchema for (&mut OpenapiRouter<'a, RouterBuilder<'b, C, P>>, &str)
where C: PipelineHandleChain<P> + Copy + Send + Sync + 'static, P: RefUnwindSafe + Send + Sync + 'static,

source§

fn endpoint<E: EndpointWithSchema + 'static>(&mut self)

source§

impl<'a, 'b, C, P> DrawResourceRoutesWithSchema for (&mut OpenapiRouter<'a, ScopeBuilder<'b, C, P>>, &str)
where C: PipelineHandleChain<P> + Copy + Send + Sync + 'static, P: RefUnwindSafe + Send + Sync + 'static,

source§

fn endpoint<E: EndpointWithSchema + 'static>(&mut self)

Implementors§