[][src]Struct grin_core::ser::StreamingReader

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

A reader that reads straight off a stream. Tracks total bytes read so we can verify we read the right number afterwards.

Implementations

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

pub fn new(
    stream: &'a mut dyn Read,
    version: ProtocolVersion
) -> StreamingReader<'a>
[src]

Create a new streaming reader with the provided underlying stream. Also takes a duration to be used for each individual read_exact call.

pub fn total_bytes_read(&self) -> u64[src]

Returns the total bytes read via this streaming reader.

Trait Implementations

impl<'a> Reader for StreamingReader<'a>[src]

Note: We use read_fixed_bytes() here to ensure our "async" I/O behaves as expected.

fn read_bytes_len_prefix(&mut self) -> Result<Vec<u8>, Error>[src]

Read a variable size vector from the underlying stream. Expects a usize

fn read_fixed_bytes(&mut self, len: usize) -> Result<Vec<u8>, Error>[src]

Read a fixed number of bytes.

Auto Trait Implementations

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

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

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

impl<'a> Unpin for StreamingReader<'a>

impl<'a> !UnwindSafe for StreamingReader<'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> Same<T> for T

type Output = T

Should always be Self

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<T> UnsafeAny for T where
    T: Any