TransactionDecodable

Trait TransactionDecodable 

Source
pub trait TransactionDecodable: Sized {
    // Required methods
    fn from_call<'a>(call: impl Into<StringOrBytes<'a>>) -> Result<Self, String>;
    fn from_ext<'a>(call: impl Into<StringOrBytes<'a>>) -> Result<Self, String>;
}

Required Methods§

Source

fn from_call<'a>(call: impl Into<StringOrBytes<'a>>) -> Result<Self, String>

Source

fn from_ext<'a>(call: impl Into<StringOrBytes<'a>>) -> Result<Self, String>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§