arci

Trait MotorDriveEffort

Source
pub trait MotorDriveEffort: Send + Sync {
    // Required methods
    fn set_motor_effort(&self, effort: f64) -> Result<(), Error>;
    fn get_motor_effort(&self) -> Result<f64, Error>;
}

Required Methods§

Implementations on Foreign Types§

Source§

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

Source§

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

Implementors§