radix-sbor-derive 1.2.0-dev

A library of macros for deriving Scrypto SBOR and Manifest SBOR implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
use proc_macro2::TokenStream;
use syn::Result;

pub fn handle_scrypto_sbor(input: TokenStream) -> Result<TokenStream> {
    sbor_derive_common::sbor::handle_sbor(
        input,
        Some("radix_common::data::scrypto::ScryptoCustomValueKind"),
        Some("radix_common::data::scrypto::ScryptoCustomTypeKind"),
    )
}