Module pipeline

Module pipeline 

Source
Expand description

Request/Response pipeline that integrates routing and middleware

This module provides the unified request processing pipeline that:

  • Integrates the new framework-native routing engine
  • Handles parameter injection from route matches
  • Executes middleware pipelines with route-specific configurations
  • Provides clean error handling throughout the pipeline
  • Supports route-specific middleware execution

Modules§

parameter_extraction
Helper functions for parameter extraction with better error handling

Structs§

MiddlewareGroup
Configuration for route-specific middleware groups
PipelineStats
Statistics about the request pipeline
RequestPipeline
The main request processing pipeline
RequestPipelineBuilder
Builder for creating request pipelines

Enums§

ParamError
Errors that can occur during parameter extraction and parsing
PipelineError
Errors that can occur during request pipeline processing

Type Aliases§

HandlerFn
Handler function type for request processing