// use actix_web::{Either, Error, HttpResponse}; type RegisterResult = Either>; fn index() -> RegisterResult { if is_a_variant() { // <- choose variant A Either::A(HttpResponse::BadRequest().body("Bad data")) } else { // <- variant B Either::B(Ok("Hello!")) } } // fn main() { use actix_web::{web, App, HttpServer}; HttpServer::new(|| App::new().route("/", web::get().to(index))) .bind("127.0.0.1:8088") .unwrap() .run() .unwrap(); } fn is_a_variant() -> bool { true }