pub trait CompactAs: From<Compact<Self>> {
    type As;
    fn encode_as(&self) -> &Self::As;
fn decode_from(_: Self::As) -> Result<Self, Error>; }
Expand description

Allow foreign structs to be wrap in Compact

Associated Types

A compact-encodable type that should be used as the encoding.

Required methods

Returns the compact-encodable type.

Decode Self from the compact-decoded type.

Implementors