pub trait Compressible {
type Compressed: Sized;
}Expand description
This type can be compressed to a more compact form and back using
CompressibleBy and DecompressibleBy traits.
Required Associated Types§
Sourcetype Compressed: Sized
type Compressed: Sized
The compressed type.