Enum pretty_good::CompressedDataPacket [] [src]

pub enum CompressedDataPacket {
    Uncompressed(Vec<u8>),
    Zip(Vec<u8>),
    Zlib(Vec<u8>),
    Bzip2(Vec<u8>),
}

Variants

Methods

impl CompressedDataPacket
[src]

Trait Implementations

impl Clone for CompressedDataPacket
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CompressedDataPacket
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations