usecrate::utils::units::Length;pubenumPursuitDirection{
Forward,
Backward,
Auto,}pubmodbasic;/// # `PursuitControl` Trait
/// The lower-level algorithm used by the Pursuit Algorithm to access and
/// control motor voltages.
pubtraitPursuitControl{/// A Control Algorithm that generates wheel velocities depending on a
/// point relative to the robot.
fncontrol(&self, x: Length, y: Length, lookahead: Length)->((f64, f64), bool);}