pub fn recv_with_transform_publish_step<Rx, Tx, F>(
rx: &mut Rx,
tx: &mut Tx,
output: &mut [u8],
on_full: OnFullV1,
wait: &mut impl WaitStrategy,
transform: F,
) -> Result<bool, LaneTxError>Expand description
Receive-with (borrowed) → transform → publish primitive.
This is the same logical primitive as recv_transform_publish_step, but avoids copying the
input bytes into an intermediate buffer.