pub trait SyncRobot {
// Provided methods
fn opcontrol(&mut self) -> Result { ... }
fn auto(&mut self) -> Result { ... }
fn disabled(&mut self) -> Result { ... }
fn comp_init(&mut self) -> Result { ... }
}Expand description
A trait for robot code that runs without the async executor spun up.
This trait isn’t recommended. See AsyncRobot in pros-async for the preferred trait to run robot code.