Struct seamless::api::RouteBuilder

source ·
pub struct RouteBuilder<'a> { /* private fields */ }
Expand description

Add a new API route by providing a description (optional but encouraged) and then a handler function.

Examples

// This route expects a JSON formatted string to be provided, and echoes it straight back.
api.add("echo")
   .description("Echo back the JSON encoded string provided")
   .handler(|body: FromJson<String>| ToJson(body.0));

// This route delegates to an async fn to sum some values, so we can infer more types in the handler.
api.add("another.route")
   .description("This route takes an array of values and sums them")
   .handler(|FromJson(body)| sum(body));

async fn sum(ns: Vec<u64>) -> Result<ToJson<u64>, Infallible> {
    Ok(ToJson(ns.into_iter().sum()))
}

Implementations§

Add a description to the API route.

Add a handler to the API route. Until this has been added, the route doesn’t “exist”.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.