pub trait Extension: Pod + Default {
    const TYPE: ExtensionType;
}
Expand description

Trait to be implemented by all extension states, specifying which extension and account type they are associated with

Required Associated Constants

Associated extension type enum, checked at the start of TLV entries

Implementors