pub trait ToBech32Payload {
    fn to_bech32_payload(&self) -> Vec<u8>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
; }
Expand description

Convertor trait for extracting data from a given type which will be part of Bech32 payload

Required Methods

Must return a vector with Bech32 payload data

Implementors