Skip to main content

MessageStream

Struct MessageStream 

Source
pub struct MessageStream<S> { /* private fields */ }
Available on crate feature net only.
Expand description

A whole-message reader/writer over a byte stream (anything Read + Write, e.g. a TcpStream). It owns the stream and keeps a read buffer, so read_message and write_message exchange #[bin] values — and one MessageStream serves both directions on a single connection, no try_clone needed.

Implementations§

Source§

impl<S> MessageStream<S>

Source

pub fn new(inner: S) -> Self

Wrap a stream with an unbounded read buffer. On an untrusted peer prefer bounded — a stream that never completes a frame would otherwise grow the buffer without bound.

Source

pub fn bounded(inner: S, cap: usize) -> Self

Wrap a stream with a bounded read buffer: a peer that streams bytes which never complete a message can only grow the buffer to cap bytes before read_message fails with ErrorKind::BufferFull, rather than consuming memory without bound. The bounded counterpart to new for untrusted streams.

Source

pub fn get_ref(&self) -> &S

Borrow the underlying stream.

Source

pub fn get_mut(&mut self) -> &mut S

Mutably borrow the underlying stream (e.g. to set a timeout).

Source

pub fn into_inner(self) -> S

Recover the underlying stream (any buffered-but-unparsed bytes are dropped).

Source§

impl<S: Read> MessageStream<S>

Source

pub fn read_message<T: BitDecode + BitEncode>(&mut self) -> Result<T, BitError>

Read exactly one #[bin] message, pulling more bytes from the stream as needed and keeping any trailing bytes for the next call. The message’s own byte/bit order is honored (via BitBuf::pull).

§Errors

A codec BitError for a malformed message, or an I/O error — an EOF mid-stream (a closed connection) surfaces as an Io(UnexpectedEof) error, so a read loop ends on Err.

Source§

impl<S: Write> MessageStream<S>

Source

pub fn write_message<T: BitEncode>(&mut self, msg: &T) -> Result<(), BitError>

Encode one #[bin] message and write it to the stream.

§Errors

A codec BitError or an I/O write error.

Trait Implementations§

Source§

impl<S: Debug> Debug for MessageStream<S>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<S> Freeze for MessageStream<S>
where S: Freeze,

§

impl<S> RefUnwindSafe for MessageStream<S>
where S: RefUnwindSafe,

§

impl<S> Send for MessageStream<S>
where S: Send,

§

impl<S> Sync for MessageStream<S>
where S: Sync,

§

impl<S> Unpin for MessageStream<S>
where S: Unpin,

§

impl<S> UnsafeUnpin for MessageStream<S>
where S: UnsafeUnpin,

§

impl<S> UnwindSafe for MessageStream<S>
where S: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more