Skip to main content

PipelineFn

Type Alias PipelineFn 

Source
pub type PipelineFn = for<'a> fn(PartsCtx<'a>, RequestScope) -> Pin<Box<dyn Future<Output = Result<Body, ApigateError>> + Send + 'a>>;
Expand description

Single function that orchestrates all request processing: parse path params → before hooks → validate/parse body → map → return body.