4 releases (breaking)

0.17.0 Aug 5, 2024
0.16.0 Sep 26, 2023
0.15.0 Jul 10, 2023
0.14.0 Aug 3, 2022

#24 in #avro

Download history 3954/week @ 2024-08-03 3490/week @ 2024-08-10 4294/week @ 2024-08-17 5401/week @ 2024-08-24 5753/week @ 2024-08-31 4335/week @ 2024-09-07 3777/week @ 2024-09-14 5208/week @ 2024-09-21 3729/week @ 2024-09-28 2851/week @ 2024-10-05 2772/week @ 2024-10-12 2441/week @ 2024-10-19 2555/week @ 2024-10-26 3970/week @ 2024-11-02 4931/week @ 2024-11-09 4872/week @ 2024-11-16

16,680 downloads per month
Used in 6 crates (via apache-avro)

Apache-2.0

31KB
590 lines

avro_derive

A proc-macro module for automatically deriving the avro schema for structs or enums. The macro produces the logic necessary to implement the AvroSchema trait for the type.

pub trait AvroSchema {
    // constructs the schema for the type
    fn get_schema() -> Schema;
}

How-to use

Add the "derive" feature to your apache-avro dependency inside cargo.toml

apache-avro = { version = "X.Y.Z", features = ["derive"] }

Add to your data model

#[derive(AvroSchema)]
struct Test {
    a: i64,
    b: String,
}

Example

use apache_avro::Writer;

#[derive(Debug, Serialize, AvroSchema)]
struct Test {
    a: i64,
    b: String,
}
// derived schema, always valid or code fails to compile with a descriptive message
let schema = Test::get_schema();

let mut writer = Writer::new(&schema, Vec::new());
let test = Test {
    a: 27,
    b: "foo".to_owned(),
};
writer.append_ser(test).unwrap();
let encoded = writer.into_inner();

Compatibility Notes

This module is designed to work in concert with the Serde implementation. If your use case dictates needing to manually convert to a Value type in order to encode then the derived schema may not be correct.

Dependencies

~1–2MB
~41K SLoC