pub struct BiasSweepConfig {
pub lower_limit: f32,
pub upper_limit: f32,
pub steps: u16,
pub period_ms: u16,
pub reset_bias_after: bool,
pub z_controller_behavior: u16,
}Expand description
Configuration for bias sweep during stability testing
Fields§
§lower_limit: f32§upper_limit: f32§steps: u16§period_ms: u16§reset_bias_after: bool§z_controller_behavior: u16Trait Implementations§
Source§impl Clone for BiasSweepConfig
impl Clone for BiasSweepConfig
Source§fn clone(&self) -> BiasSweepConfig
fn clone(&self) -> BiasSweepConfig
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 BiasSweepConfig
impl Debug for BiasSweepConfig
Source§impl<'de> Deserialize<'de> for BiasSweepConfig
impl<'de> Deserialize<'de> for BiasSweepConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BiasSweepConfig
impl PartialEq for BiasSweepConfig
Source§impl Serialize for BiasSweepConfig
impl Serialize for BiasSweepConfig
impl StructuralPartialEq for BiasSweepConfig
Auto Trait Implementations§
impl Freeze for BiasSweepConfig
impl RefUnwindSafe for BiasSweepConfig
impl Send for BiasSweepConfig
impl Sync for BiasSweepConfig
impl Unpin for BiasSweepConfig
impl UnwindSafe for BiasSweepConfig
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