pub trait MoveBase: Send + Sync {
// Required methods
fn send_velocity(&self, velocity: &BaseVelocity) -> Result<(), Error>;
fn current_velocity(&self) -> Result<BaseVelocity, Error>;
}
pub trait MoveBase: Send + Sync {
// Required methods
fn send_velocity(&self, velocity: &BaseVelocity) -> Result<(), Error>;
fn current_velocity(&self) -> Result<BaseVelocity, Error>;
}