pub enum AntiWindupMode {
Clamping,
BackCalculation,
Conditional,
}Expand description
Anti-windup strategy
Variants§
Clamping
Clamp integral when output saturates
BackCalculation
Back-calculate integral when saturated (recommended)
Conditional
Conditional integration (don’t integrate when saturated)
Trait Implementations§
Source§impl Clone for AntiWindupMode
impl Clone for AntiWindupMode
Source§fn clone(&self) -> AntiWindupMode
fn clone(&self) -> AntiWindupMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AntiWindupMode
Source§impl Debug for AntiWindupMode
impl Debug for AntiWindupMode
impl Eq for AntiWindupMode
Source§impl PartialEq for AntiWindupMode
impl PartialEq for AntiWindupMode
impl StructuralPartialEq for AntiWindupMode
Auto Trait Implementations§
impl Freeze for AntiWindupMode
impl RefUnwindSafe for AntiWindupMode
impl Send for AntiWindupMode
impl Sync for AntiWindupMode
impl Unpin for AntiWindupMode
impl UnsafeUnpin for AntiWindupMode
impl UnwindSafe for AntiWindupMode
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