Trait interprocess::local_socket::traits::SendHalf

source ·
pub trait SendHalf: Sized + Write + RefWrite + Sealed {
    type Stream: Stream;
}
Expand description

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

Types on which this trait is implemented are variants of the SendHalf enum. In addition, it is implemented on SendHalf 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 SendHalf for interprocess::local_socket::SendHalf

source§

impl SendHalf for interprocess::os::unix::uds_local_socket::SendHalf

Available on Unix only.