Trait TransactionCallLike

Source
pub trait TransactionCallLike {
    // Required methods
    fn to_call(&self) -> TransactionCall;
    fn from_ext(raw: &[u8]) -> Option<Box<Self>>;
}

Required Methods§

Source

fn to_call(&self) -> TransactionCall

Source

fn from_ext(raw: &[u8]) -> Option<Box<Self>>

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§