Make web apis.
```rust no_run
use std::fmt; use std::sync::{Arc, Mutex};
use api::{Request, Method}; use api::error::{ApiError, Error as ErrorTrait, StatusCode}; use api::{fire, api};
use serde::{Serialize, Deserialize};
// -- Type definitions
pub enum Error { Internal(String), Request(String) }
impl ApiError for Error {
fn internal
fn request<E: ErrorTrait>(e: E) -> Self {
Self::Request(e.to_string())
}
fn status_code(&self) -> StatusCode {
match self {
Self::Internal(_) => StatusCode::INTERNAL_SERVER_ERROR,
Self::Request(_) => StatusCode::BAD_REQUEST
}
}
}
impl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fmt::Debug::fmt(self, f) } }
struct NameReq;
struct Name { firstname: String, lastname: String }
impl Request for NameReq { type Response = Name; type Error = Error;
const PATH: &'static str = "/name";
const METHOD: Method = Method::GET;
}
struct SetNameReq { name: Name }
impl Request for SetNameReq { type Response = (); type Error = Error;
const PATH: &'static str = "/name";
const METHOD: Method = Method::PUT;
}
// -- implementations
struct SharedName(Mutex
fn get_name(req: NameReq, name: &SharedName) -> Result
fn set_name(req: SetNameReq, name: &SharedName) -> Result<(), Error> { let mut lock = name.0.lock().unwrap(); *lock = req.name;
Ok(())
}
async fn main() { let name = SharedName(Mutex::new(Name { firstname: "Albert".into(), lastname: "Einstein".into() }));
let mut server = fire::build("0.0.0.0:3000").await
.expect("Failed to parse address");
server.add_data(name);
server.add_route(get_name);
server.add_route(set_name);
server.light().await
.expect("server paniced");
} ```