pub fn framed_send_blocking(
    w: &mut (impl Write + Unpin),
    buf: &[u8]
) -> Result<()>
Expand description

Write some data prefixed by its length into w. Sync version of framed_send to avoid dependency on tokio.