pub fn send_receive_into<M, D, B, S>(
    msg: &M,
    destination: &D,
    buf: &mut B,
    source: &S
) -> Status
where M: Buffer + ?Sized, D: Destination, B: BufferMut + ?Sized, S: Source,
Expand description

Sends the contents of msg to destination and simultaneously receives a message from source into buf.

Standard section(s)

3.10