Struct snappy_framed::read::SnappyFramedDecoder [] [src]

pub struct SnappyFramedDecoder<R: Read> { /* fields omitted */ }

Decode a stream containing Snappy-compressed frames.

use std::io::{Cursor, Read};
use snappy_framed::read::{CrcMode, SnappyFramedDecoder};

let compressed: &[u8] =
    &[0xff, 0x06, 0x00, 0x00, 0x73, 0x4e, 0x61, 0x50, 0x70, 0x59, 0x01,
      0x0a, 0x00, 0x00, 0xd3, 0xfe, 0x2e, 0x7a, 0x48, 0x65, 0x6c, 0x6c,
      0x6f, 0x21];
let mut cursor = Cursor::new(&compressed as &[u8]);
let mut decoder = SnappyFramedDecoder::new(&mut cursor, CrcMode::Verify);
let mut output = vec!();
decoder.read_to_end(&mut output).unwrap();

assert_eq!(b"Hello!", &output as &[u8]);

Methods

impl<R: Read> SnappyFramedDecoder<R>
[src]

Create a new decoder wrapping the specified source, and using the CRC verification options indicated by mode.

Trait Implementations

impl<R: Read> Read for SnappyFramedDecoder<R>
[src]

Pull some bytes from this source into the specified buffer, returning how many bytes were read. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read all bytes until EOF in this source, placing them into buf. Read more

Read the exact number of bytes required to fill buf. Read more

Creates a "by reference" adaptor for this instance of Read. Read more

Transforms this Read instance to an Iterator over its bytes. Read more

🔬 This is a nightly-only experimental API. (io)

the semantics of a partial read/write of where errors happen is currently unclear and may change

Transforms this Read instance to an Iterator over chars. Read more

Creates an adaptor which will chain this stream with another. Read more

Creates an adaptor which will read at most limit bytes from it. Read more