ValueConvertible

Derive Macro ValueConvertible 

Source
#[derive(ValueConvertible)]
Expand description

Derive macro that generates impl ValueConvertible for Type {}.

ValueConvertible has default method implementations that use platform_value serialization, so the generated impl is always empty.

#[derive(ValueConvertible)]
pub enum ExtendedBlockInfo {
    V0(ExtendedBlockInfoV0),
}