A server has any restful interface (like this : finduserbyid, newuser)
```shell curl 127.1:3000/user/findbyid/1
curl -X POST 127.1:3000/user/new_user \ -H 'Content-Type: application/json' \ -d '{"id":1,"name":"Link"}'
```
```toml [dependencies] feign = "0" reqwest = { version = "0.11", features = ["json"] } serde = "1.0" serdederive = "1.0" serdejson = "1.0"
tokio = { version = "1.15", features = ["macros", "rt-multi-thread"] } ```
Add a user entity add derives serdederive::Deserialize and serdederive::Serialize
```rust use serdederive::Deserialize; use serdederive::Serialize;
pub struct User { pub id: i64, pub name: String, } ```
```rust
use feign::{client, ClientResult};
pub trait UserClient {
#[get(path = "/findbyid/
Use
```rust
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
rust
#[get(path = "/headers")]
async fn headers(
&self,
#[json] age: &i64,
#[headers] headers: HashMap<String, String>,
) -> ClientResult<Option<User>>;
```rust
pub trait UserClient {}
async fn main() { let userclient: UserClient = UserClient::new(); userclient .configure_host(String::from("http://127.0.0.1:3000")) .await; } ```
Impl a async fn Result
```rust use feign::{client, ClientResult};
async fn client_builder() -> ClientResult
host = "http://127.0.0.1:3000", path = "/user", clientbuilder = "clientbuilder" )] pub trait UserClient {} ```
If you want check hash of json body, sign to header. Or log the request.
rust
async fn before_send(
request_builder: reqwest::RequestBuilder,
http_method: HttpMethod,
host: String,
client_path: String,
request_path: String,
body: RequestBody,
headers: Option<HashMap<String, String>>,
) -> ClientResult<reqwest::RequestBuilder> {
println!(
"============= (Before_send)\n\
{:?} => {}{}{}\n\
{:?}\n\
{:?}",
http_method, host, client_path, request_path, headers, body
);
Ok(request_builder.header("a", "b"))
}
Set before_send arg with function name
```rust
host = "http://127.0.0.1:3000",
path = "/user",
clientbuilder = "clientbuilder",
beforesend = "beforesend"
)]
pub trait UserClient {
#[get(path = "/findbyid/
create async deserializer, result type same as field method
rust
async fn bare_string(body: String) -> ClientResult<String> {
Ok(body)
}
set deserialize, field method result type same as deserializer
rust
#[post(path = "/new_user", deserialize = "bare_string")]
async fn new_user_bare_string(&self, #[json] user: &User) -> ClientResult<String>;
rust
match user_client
.new_user_bare_string(&User {
id: 123,
name: "name".to_owned(),
})
.await
{
Ok(result) => println!("result : {}", result),
Err(err) => panic!("{}", err),
};
result (Raw text)
text
result : "name"