Trait subxt_core::metadata::DecodeWithMetadata
source · pub trait DecodeWithMetadata: Sized {
// Required method
fn decode_with_metadata(
bytes: &mut &[u8],
type_id: u32,
metadata: &Metadata
) -> Result<Self, Error>;
}Expand description
This trait is implemented for all types that also implement scale_decode::DecodeAsType.
Required Methods§
Object Safety§
This trait is not object safe.