pub struct PidController {
pub gains: PidGains,
pub state: PidState,
}Fields§
§gains: PidGains§state: PidStateImplementations§
Trait Implementations§
Source§impl Clone for PidController
impl Clone for PidController
Source§fn clone(&self) -> PidController
fn clone(&self) -> PidController
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 moreSource§impl Debug for PidController
impl Debug for PidController
Source§impl PartialEq for PidController
impl PartialEq for PidController
Source§fn eq(&self, other: &PidController) -> bool
fn eq(&self, other: &PidController) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PidController
impl StructuralPartialEq for PidController
Auto Trait Implementations§
impl Freeze for PidController
impl RefUnwindSafe for PidController
impl Send for PidController
impl Sync for PidController
impl Unpin for PidController
impl UnsafeUnpin for PidController
impl UnwindSafe for PidController
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