// use actix_web::{Either, Error, HttpResponse}; type RegisterResult = Either>; async fn index() -> RegisterResult { if is_a_variant() { // choose Left variant Either::Left(HttpResponse::BadRequest().body("Bad data")) } else { // choose Right variant Either::Right(Ok("Hello!")) } } // #[actix_web::main] async fn main() -> std::io::Result<()> { use actix_web::{web, App, HttpServer}; HttpServer::new(|| App::new().route("/", web::get().to(index))) .bind(("127.0.0.1", 8080))? .run() .await } fn is_a_variant() -> bool { true }