pub trait CompressedEncoding
where Self: Sized,
{ type Bytes: ByteArray; // Required method fn to_bytes_compressed(&self) -> Self::Bytes; }

Required Associated Types§

Required Methods§

source

fn to_bytes_compressed(&self) -> Self::Bytes

Object Safety§

This trait is not object safe.

Implementors§