pub struct InterfCtrlProps {
pub integral: f32,
pub proportional: f32,
pub positive_sign: bool,
}Expand description
Interferometer controller properties.
Fields§
§integral: f32Integral gain
proportional: f32Proportional gain
positive_sign: boolSign (true = positive, false = negative)
Trait Implementations§
Source§impl Clone for InterfCtrlProps
impl Clone for InterfCtrlProps
Source§fn clone(&self) -> InterfCtrlProps
fn clone(&self) -> InterfCtrlProps
Returns a duplicate of the value. Read more
1.0.0 · 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 InterfCtrlProps
impl Debug for InterfCtrlProps
Source§impl Default for InterfCtrlProps
impl Default for InterfCtrlProps
Source§fn default() -> InterfCtrlProps
fn default() -> InterfCtrlProps
Returns the “default value” for a type. Read more
impl Copy for InterfCtrlProps
Auto Trait Implementations§
impl Freeze for InterfCtrlProps
impl RefUnwindSafe for InterfCtrlProps
impl Send for InterfCtrlProps
impl Sync for InterfCtrlProps
impl Unpin for InterfCtrlProps
impl UnwindSafe for InterfCtrlProps
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