Expand description
Extensions for constructing Endpoints
Modules§
Structs§
Traits§
- Endpoint
Ext - A set of extension methods used for composing complicate endpoints.
- Endpoint
Option Ext - A set of extension methods which is available when the output is value is an
Option. - Endpoint
Result Ext - A set of extension methods which is available when the output value is a
Result.
Functions§
- abort
- Create an endpoint which always abort the incoming request with an error of
E. - all
- Create an endpoint which evaluates the all endpoint in the given collection sequentially.
- just
- Create an endpoint which immediately returns a value of
T. - lazy
- Create an endpoint which applies the given function to the incoming request and returns
an immediate value of
T.