send

Macro send 

Source
macro_rules! send {
    ($i: ident, $e: expr) => { ... };
}
Expand description

shorten send calls

send!(pipe, 2); // this is equivalent to this
let pipe = pipe.send(2).await?;