Trait interprocess::local_socket::traits::RecvHalf

source ·
pub trait RecvHalf: Sized + Read + RefRead + Sealed {
    type Stream: Stream;
}
Expand description

Receive halves of Streams, obtained through .split().

Types on which this trait is implemented are variants of the RecvHalf enum. In addition, it is implemented on RecvHalf itself, which makes it a trait object of sorts.

Required Associated Types§

source

type Stream: Stream

The stream type the half is split from.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl RecvHalf for interprocess::local_socket::RecvHalf

source§

impl RecvHalf for interprocess::os::unix::uds_local_socket::RecvHalf

Available on Unix only.