pub struct PatternProps {
pub available_experiments: Vec<String>,
pub selected_experiment: String,
pub external_vi_path: String,
pub pre_measure_delay_s: f32,
pub save_scan_channels: bool,
}Expand description
Pattern experiment properties.
Fields§
§available_experiments: Vec<String>List of available experiments
selected_experiment: StringCurrently selected experiment
external_vi_path: StringPath to external VI
pre_measure_delay_s: f32Pre-measure delay in seconds
save_scan_channels: boolSave scan channels to file
Trait Implementations§
Source§impl Clone for PatternProps
impl Clone for PatternProps
Source§fn clone(&self) -> PatternProps
fn clone(&self) -> PatternProps
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 PatternProps
impl Debug for PatternProps
Auto Trait Implementations§
impl Freeze for PatternProps
impl RefUnwindSafe for PatternProps
impl Send for PatternProps
impl Sync for PatternProps
impl Unpin for PatternProps
impl UnwindSafe for PatternProps
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