pub struct CPDCompParams {
pub speed_hz: f32,
pub range_v: f32,
pub averaging: i32,
}Expand description
CPD compensation parameters.
Fields§
§speed_hz: f32Sweep speed in Hz
range_v: f32Voltage range in volts
averaging: i32Number of averaging cycles
Trait Implementations§
Source§impl Clone for CPDCompParams
impl Clone for CPDCompParams
Source§fn clone(&self) -> CPDCompParams
fn clone(&self) -> CPDCompParams
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 CPDCompParams
impl Debug for CPDCompParams
Source§impl Default for CPDCompParams
impl Default for CPDCompParams
Source§fn default() -> CPDCompParams
fn default() -> CPDCompParams
Returns the “default value” for a type. Read more
impl Copy for CPDCompParams
Auto Trait Implementations§
impl Freeze for CPDCompParams
impl RefUnwindSafe for CPDCompParams
impl Send for CPDCompParams
impl Sync for CPDCompParams
impl Unpin for CPDCompParams
impl UnwindSafe for CPDCompParams
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