[][src]Struct sequoia_openpgp::serialize::stream::Compressor

pub struct Compressor<'a> { /* fields omitted */ }

Compresses a packet stream.

Writes a compressed data packet containing all packets written to this writer.

Example

extern crate sequoia_openpgp as openpgp;
use std::io::Write;
use openpgp::serialize::stream::{Message, Compressor, LiteralWriter};
use openpgp::types::CompressionAlgorithm;

let mut o = vec![];
{
    let message = Message::new(&mut o);
    let w = Compressor::new(message)
        .algo(CompressionAlgorithm::Uncompressed).build()?;
    let mut w = LiteralWriter::new(w).build()?;
    w.write_all(b"Hello world.")?;
    w.finalize()?;
}
assert_eq!(b"\xc8\x15\x00\xcb\x12b\x00\x00\x00\x00\x00Hello world.",
           o.as_slice());

Implementations

impl<'a> Compressor<'a>[src]

pub fn new(inner: Message<'a, Cookie>) -> Self[src]

Creates a new compressor using the given algorithm.

Passing None to compression_level selects the default compression level.

pub fn algo(self, algo: CompressionAlgorithm) -> Self[src]

Sets the compression algorithm.

pub fn level(self, level: CompressionLevel) -> Self[src]

Sets the compression level.

pub fn build(self) -> Result<Message<'a, Cookie>>[src]

Finalizes the compressor, returning the writer stack.

Trait Implementations

impl<'a> Debug for Compressor<'a>[src]

impl<'a> Write for Compressor<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Compressor<'a>

impl<'a> !Send for Compressor<'a>

impl<'a> !Sync for Compressor<'a>

impl<'a> Unpin for Compressor<'a>

impl<'a> !UnwindSafe for Compressor<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,