FR

Feign-RS (Rest client of Rust)

How to use

demo server

A server has two restful interface (finduserbyid, newuser)

```shell curl 127.1:3000/user/findbyid/1

{"id":1,"name":"hello"}

curl -X POST 127.1:3000/user/new_user \ -H 'Content-Type: application/json' \ -d '{"id":1,"name":"Link"}'

"Link" ➜ ~

```

make a client

```rust use serdederive::Deserialize; use serdederive::Serialize;

use feign::{client, ClientResult};

[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]

pub struct User { pub id: i64, pub name: String, }

[client(host = "http://127.0.0.1:3000", path = "/user")]

pub trait UserClient { #[get(path = "/findbyid/")] async fn findbyid(&self, #[path] id: i64) -> ClientResult>; #[post(path = "/newuser")] async fn newuser(&self, #[json] user: &User) -> ClientResult>; } ```

call api

```rust

[tokio::main]

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),
};

match user_client
    .new_user(&User {
        id: 123,
        name: "name".to_owned(),
    })
    .await
{
    Ok(option) => match option {
        Some(result) => println!("result : {}", result),
        None => println!("none"),
    },
    Err(err) => panic!("{}", err),
};

} text user : hello result : name ```