Trait AbiDecodeWith

Source
pub trait AbiDecodeWith<Abi>: Sized {
    type Error: Debug;

    // Required method
    fn decode_with(buffer: &[u8]) -> Result<Self, Self::Error>;
}
Expand description

Trait for ABI-specific decoding.

Required Associated Types§

Source

type Error: Debug

The error type that can occur during decoding.

Required Methods§

Source

fn decode_with(buffer: &[u8]) -> Result<Self, Self::Error>

Decodes the data from a buffer using the provided ABI.

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§

Source§

impl<T> AbiDecodeWith<SolEncoding> for T
where T: From<<<T as SolValue>::SolType as SolType>::RustType> + SolValue,

Source§

type Error = Error

Source§

impl<T: Decode> AbiDecodeWith<ScaleEncoding> for T

Source§

type Error = Error