Trait parity_scale_codec::CompactAs
source · [−]pub trait CompactAs: From<Compact<Self>> {
type As;
fn encode_as(&self) -> &Self::As;
fn decode_from(_: Self::As) -> Self;
}
Expand description
Allow foreign structs to be wrap in Compact
Associated Types
Required methods
fn decode_from(_: Self::As) -> Self
fn decode_from(_: Self::As) -> Self
Create Self
from the decodable type.