```rust use serdederive::Deserialize; use serdederive::Serialize;
use feign::{client, ClientResult};
pub struct User { pub id: i64, pub name: String, }
pub trait UserClient {
#[get(path = "/find_by_id/<id>")]
async fn find_by_id(&self, #[path] id: i64) -> ClientResult<Option<User>>;
#[post(path = "/new_user")]
async fn new_user(&self, #[json] user: &User) -> ClientResult<Option<String>>;
}
async fn main() { let user_client: UserClient = UserClient::new();
match user_client.find_by_id(12).await {
Ok(option) => match option {
Some(user) => println!("user : {}", user.name),
None => println!("none"),
},
Err(err) => panic!("{}", err),
};
} ```