pub trait Encodable {
    type Encoded;
    fn encode(&self, encoding: UiTransactionEncoding) -> Self::Encoded;
}
Expand description

Represents types that can be encoded into one of several encoding formats

Associated Types

Required methods

Implementations on Foreign Types

Implementors