[][src]Trait fizyr_rpc::transport::ReadHalfType

pub trait ReadHalfType<'a> {
    type Body: Body;
    type ReadHalf: TransportReadHalf<Body = Self::Body>;
}

Helper trait to define the type of a read half for a transport.

Used to work around the lack of generic associated types.

Associated Types

type Body: Body[src]

The body type for the transport.

type ReadHalf: TransportReadHalf<Body = Self::Body>[src]

The concrete type of the read half.

Loading content...

Implementors

Loading content...