pub struct DataLogProps {
pub mode: DataLogAcqMode,
pub duration_hours: i32,
pub duration_minutes: i32,
pub duration_seconds: f32,
pub averaging: i32,
pub basename: String,
pub comment: String,
}Expand description
Data Logger acquisition configuration.
Fields§
§mode: DataLogAcqModeAcquisition mode
duration_hours: i32Acquisition duration hours
duration_minutes: i32Acquisition duration minutes
duration_seconds: f32Acquisition duration seconds
averaging: i32Averaging count (samples averaged per data point)
basename: StringBase filename for saved files
comment: StringComment saved in file
Trait Implementations§
Source§impl Clone for DataLogProps
impl Clone for DataLogProps
Source§fn clone(&self) -> DataLogProps
fn clone(&self) -> DataLogProps
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 DataLogProps
impl Debug for DataLogProps
Auto Trait Implementations§
impl Freeze for DataLogProps
impl RefUnwindSafe for DataLogProps
impl Send for DataLogProps
impl Sync for DataLogProps
impl Unpin for DataLogProps
impl UnwindSafe for DataLogProps
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