radixdb-plugin 1.1.0

Safe authoring SDK and local test host for RadixDB native plugins
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use radixdb_plugin::RadixType;

#[derive(Default, RadixType)]
#[radix_type(
    id = "unbounded",
    name = "unbounded",
    codec = 1,
    semantic_revision = 1,
    storage = "variable",
    max_bytes = 1024
)]
struct Unbounded {
    #[radix_field(codec = "u32-le")]
    values: Vec<u32>,
}

fn main() {}