Trait arci::MotorDriveVelocity

source ·
pub trait MotorDriveVelocity: Send + Sync {
    // Required methods
    fn set_motor_velocity(&self, velocity: f64) -> Result<(), Error>;
    fn get_motor_velocity(&self) -> Result<f64, Error>;
}

Required Methods§

Implementations on Foreign Types§

source§

impl<T: MotorDriveVelocity + ?Sized> MotorDriveVelocity for Box<T>
where Box<T>: Send + Sync,

source§

impl<T: MotorDriveVelocity + ?Sized> MotorDriveVelocity for Arc<T>
where Arc<T>: Send + Sync,

Implementors§