pub struct EDFChannel {
pub label: String,
pub transducter_type: String,
pub physical_dimension: String,
pub physical_minimum: f32,
pub physical_maximum: f32,
pub digital_minimum: i64,
pub digital_maximum: i64,
pub prefiltering: String,
pub number_of_samples_in_data_record: u64,
pub scale_factor: f32,
}Fields§
§label: String§transducter_type: String§physical_dimension: String§physical_minimum: f32§physical_maximum: f32§digital_minimum: i64§digital_maximum: i64§prefiltering: String§number_of_samples_in_data_record: u64§scale_factor: f32Trait Implementations§
Source§impl Clone for EDFChannel
impl Clone for EDFChannel
Source§fn clone(&self) -> EDFChannel
fn clone(&self) -> EDFChannel
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 EDFChannel
impl Debug for EDFChannel
Source§impl<'de> Deserialize<'de> for EDFChannel
impl<'de> Deserialize<'de> for EDFChannel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EDFChannel
impl PartialEq for EDFChannel
Source§impl Serialize for EDFChannel
impl Serialize for EDFChannel
impl StructuralPartialEq for EDFChannel
Auto Trait Implementations§
impl Freeze for EDFChannel
impl RefUnwindSafe for EDFChannel
impl Send for EDFChannel
impl Sync for EDFChannel
impl Unpin for EDFChannel
impl UnwindSafe for EDFChannel
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