pub async fn write_frame<W>(w: &mut W, body: &[u8]) -> Result<()>where
W: AsyncWrite + Unpin,Expand description
Write a single framed blob. Returns io::ErrorKind::InvalidInput
if body.len() > MAX_FRAME_BYTES.
pub async fn write_frame<W>(w: &mut W, body: &[u8]) -> Result<()>where
W: AsyncWrite + Unpin,Write a single framed blob. Returns io::ErrorKind::InvalidInput
if body.len() > MAX_FRAME_BYTES.