join

Macro join 

Source
macro_rules! join {
    ($($fut:expr),+ $(,)?) => { ... };
}
Expand description

A non-racing multitasker.

ยงExamples

use ev3dev_rs::join;
join!(drive.straight(100), attachment_motor.run_until_stalled(-45))?;