pub trait BaseStateWithExtensions<S: BaseState> {
    fn get_tlv_data(&self) -> &[u8] ;

    fn get_extension<V: Extension>(&self) -> Result<&V, ProgramError> { ... }
    fn get_extension_types(&self) -> Result<Vec<ExtensionType>, ProgramError> { ... }
    fn get_first_extension_type(
        &self
    ) -> Result<Option<ExtensionType>, ProgramError> { ... } }
Expand description

Trait for base state with extension

Required Methods

Get the buffer containing all extension data

Provided Methods

Unpack a portion of the TLV data as the desired type

Iterates through the TLV entries, returning only the types

Get just the first extension type, useful to track mixed initializations

Implementors