pub trait Compressed {
    fn is_compressed(&self) -> bool { ... }
}
Expand description

Trait denoting a compressed item. Use is_compressed to declare if the item is compressed at runtime (in which case the internal buffer is swapped)

Provided Methods

Implementors