Type Definition under::Result

source ·
pub type Result<R = Response, E = Error> = Result<R, E>;
Expand description

A type alias for std::result::Result.

The most common use-case for this type is for endpoints, which return this type as a response for a request.

Examples

async fn handle(req: under::Request) -> under::Result {
    return Ok(under::Response::text("hello, world!"));
}

let mut http = under::http();
http.at("/").get(handle);