#http #client #interfacer #http-header

nightly macro interfacer-http-attribute

proc macro for interfacer-http

7 releases

0.2.1 Sep 5, 2019
0.2.0 Aug 20, 2019
0.1.5 Aug 16, 2019

#95 in #http-header

Download history 7/week @ 2024-02-19 18/week @ 2024-02-26 9/week @ 2024-03-04 23/week @ 2024-03-11 7/week @ 2024-03-18

58 downloads per month
Used in 3 crates (via interfacer-http)

MIT license

29KB
782 lines

A magic http client, like retrofit in Java

// define interface

#![feature(custom_attribute, async_await, param_attrs)]
#![allow(unused_attributes)]

use interfacer_http::derive::{FromContent, ToContent};
use interfacer_http::{content_types, http::header::COOKIE, http_interface, Response, Result};
use serde_derive::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, FromContent, ToContent, Debug)]
struct User {
    name: String,
    age: i32,
}

#[http_interface]
trait UserInterface: Clone {
    #[put("/api/user/{id}?age={age}")]
    #[expect(200, content_types::APPLICATION_JSON)]
    async fn put_user(
        &self,
        id: u64,
        age: i32,
        #[body] user: &User,
        #[header(COOKIE)] cookie: &str
    ) -> Result<Response<User>>;
}

// use it
use interfacer_http_hyper::AsyncService;

Dependencies

~4–5.5MB
~102K SLoC