Crates.io | abomonation_derive_ng |
lib.rs | abomonation_derive_ng |
version | 0.1.0 |
source | src |
created_at | 2023-11-08 13:20:38.543612 |
updated_at | 2023-11-08 13:20:38.543612 |
description | A custom derive plugin for abomonation |
homepage | |
repository | https://github.com/lurk-lab/abomonation_derive |
max_upload_size | |
id | 1029039 |
size | 37,087 |
Derive macro implementation for the Abomonation crate. Forked & improved from the original abomonation_derive
crate from @mystor.
This crate provides a custom derive macro #[derive(Abomonation)]
for types that should be serializable with the abomonation crate.
Add this to your Cargo.toml
:
[dependencies]
abomonation_derive_ng = "0.1"
abomonation = "0.5"
Then, derive Abomonation
on your types:
#[macro_use]
extern crate abomonation_derive_ng;
extern crate abomonation;
use abomonation::Abomonation;
#[derive(Abomonation, PartialEq, Debug)]
struct MyStruct {
a: u64,
b: String,
c: Vec<u8>,
}
// Now you can use `MyStruct` with `abomonation`'s `encode` and `decode`.
#[abomonation_omit_bounds]
: Omits automatic trait bound generation for the Abomonation trait.#[abomonation_bounds(Trait1, Trait2)]
: Adds custom trait bounds.#[abomonate_with = "path::to::function"]
: Specifies a custom method to use for serialization.#[abomonation_skip]
: Skips the field when serializing.The crate does not currently support union types.
The use of unsafe
is necessary due to the nature of abomonation
's serialization technique.
This crate relies on the same unsafe serialization strategy as abomonation
, and the same caveats apply. It is not suitable for untrusted inputs and requires care when used.
For detailed information on the safety concerns and how to use this crate, consult the abomonation documentation.
This project is licensed under the MIT License, same as the original abomonation-derive
crate.