Derive Macro scrypto::prelude::ScryptoDecode

#[derive(ScryptoDecode)]
{
    // Attributes available to this derive:
    #[sbor]
}
Expand description

Derives code for decoding a struct or enum with Scrypto value model.

Example

use scrypto::prelude::*;

#[derive(ScryptoDecode)]
pub struct MyStruct {
    pub field_1: u32,
    pub field_2: String,
}