pub struct PidGains {
pub kp: f64,
pub ki: f64,
pub kd: f64,
}Fields§
§kp: f64§ki: f64§kd: f64Trait Implementations§
impl Copy for PidGains
impl StructuralPartialEq for PidGains
Auto Trait Implementations§
impl Freeze for PidGains
impl RefUnwindSafe for PidGains
impl Send for PidGains
impl Sync for PidGains
impl Unpin for PidGains
impl UnsafeUnpin for PidGains
impl UnwindSafe for PidGains
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more