[][src]Type Definition dqcsim::common::channel::IpcChannel

type IpcChannel<T, U> = (IpcSender<T>, IpcReceiver<U>);

Trait Implementations

impl<T, U> Channel for IpcChannel<T, U> where
    T: Serialize + Into<U>,
    U: Serialize + for<'de> Deserialize<'de> + From<T>, 
[src]

type SenderItem = T

The message type of the sender.

type ReceiverItem = U

The message type of the receiver.

type Sender = IpcSender<T>

Sender side.

type Receiver = IpcReceiver<U>

Receiver side;