pub struct PidTerms<F> {
pub p: F,
pub i: F,
pub d: F,
pub ff: F,
}Expand description
Decomposed PID output for logging/tuning.
Fields§
§p: FProportional term.
i: FIntegral term used in this step’s output.
d: FDerivative term.
ff: FFeedforward term.
Implementations§
Trait Implementations§
impl<F: Copy> Copy for PidTerms<F>
Auto Trait Implementations§
impl<F> Freeze for PidTerms<F>where
F: Freeze,
impl<F> RefUnwindSafe for PidTerms<F>where
F: RefUnwindSafe,
impl<F> Send for PidTerms<F>where
F: Send,
impl<F> Sync for PidTerms<F>where
F: Sync,
impl<F> Unpin for PidTerms<F>where
F: Unpin,
impl<F> UnsafeUnpin for PidTerms<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for PidTerms<F>where
F: UnwindSafe,
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