pub struct RecordLine {
pub record_name: String,
pub number_of_segments: Option<u32>,
pub number_of_signals: u32,
pub sampling_frequency: Option<f32>,
pub counter_frequency: Option<f32>,
pub base_counter_value: Option<f32>,
pub samples_per_signal: Option<u32>,
pub base_time: Option<String>,
pub base_date: Option<String>,
}
Fields§
§record_name: String
§number_of_segments: Option<u32>
§number_of_signals: u32
§sampling_frequency: Option<f32>
§counter_frequency: Option<f32>
§base_counter_value: Option<f32>
§samples_per_signal: Option<u32>
§base_time: Option<String>
§base_date: Option<String>
Trait Implementations§
Source§impl Debug for RecordLine
impl Debug for RecordLine
Source§impl PartialEq for RecordLine
impl PartialEq for RecordLine
impl StructuralPartialEq for RecordLine
Auto Trait Implementations§
impl Freeze for RecordLine
impl RefUnwindSafe for RecordLine
impl Send for RecordLine
impl Sync for RecordLine
impl Unpin for RecordLine
impl UnwindSafe for RecordLine
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