Trait redux::bitio::ByteCount [] [src]

pub trait ByteCount {
    fn get_count(&self) -> u64;
}

A trait for counting the number of bytes flowing trough a Read or Write implementation.

Required Methods

Returns the number of bytes in this stream.

Implementors