[][src]Struct bitcoin::network::stream_reader::StreamReader

pub struct StreamReader<'a> {
    pub stream: &'a mut dyn Read,
    // some fields omitted
}

Struct used to configure stream reader function

Fields

stream: &'a mut dyn Read

Stream to read from

Methods

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

pub fn new(stream: &mut dyn Read, buffer_size: Option<usize>) -> StreamReader[src]

Constructs new stream reader for a given input stream stream with optional parameter buffer_size determining reading buffer size

pub fn next_message(&mut self) -> Result<RawNetworkMessage, Error>[src]

Reads stream and parses next message from its current input, also taking into account previously unparsed partial message (if there was such).

Trait Implementations

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

Auto Trait Implementations

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

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

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]