pub struct ChannelState {
pub(crate) lockin: Lockin<Lowpass<2>>,
pub(crate) x0: i32,
pub(crate) t0: i32,
pub(crate) t: i64,
pub(crate) y: i64,
pub(crate) unwrapper: Unwrapper<i64>,
pub(crate) iir: [i32; 5],
pub(crate) iir_amp: [f32; 4],
pub(crate) hold: bool,
}Fields§
§lockin: Lockin<Lowpass<2>>§x0: i32§t0: i32§t: i64§y: i64§unwrapper: Unwrapper<i64>§iir: [i32; 5]§iir_amp: [f32; 4]§hold: boolTrait Implementations§
Source§impl Clone for ChannelState
impl Clone for ChannelState
Source§fn clone(&self) -> ChannelState
fn clone(&self) -> ChannelState
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 Default for ChannelState
impl Default for ChannelState
Source§fn default() -> ChannelState
fn default() -> ChannelState
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ChannelState
impl RefUnwindSafe for ChannelState
impl Send for ChannelState
impl Sync for ChannelState
impl Unpin for ChannelState
impl UnwindSafe for ChannelState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, M> ForwardCompat<T, M> for T
impl<T, M> ForwardCompat<T, M> for T
§impl<T> ReverseCompat<T> for T
impl<T> ReverseCompat<T> for T
§fn reverse(self) -> Reverse<T>
fn reverse(self) -> Reverse<T>
Create an e-h-c wrapper around and e-h object Available methods depend on the wrapped type
§fn reverse_cell(self) -> Reverse<RefCell<T>>
fn reverse_cell(self) -> Reverse<RefCell<T>>
Create an e-h-c reverse compatibility wrapper using a ref-cell for interior mutability (required for InputPin types)