[][src]Struct edf_reader::model::EDFChannel

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: Stringtransducter_type: Stringphysical_dimension: Stringphysical_minimum: f32physical_maximum: f32digital_minimum: i64digital_maximum: i64prefiltering: Stringnumber_of_samples_in_data_record: u64scale_factor: f32

Trait Implementations

impl PartialEq<EDFChannel> for EDFChannel[src]

impl Clone for EDFChannel[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for EDFChannel[src]

impl Serialize for EDFChannel[src]

impl<'de> Deserialize<'de> for EDFChannel[src]

Auto Trait Implementations

impl Send for EDFChannel

impl Sync for EDFChannel

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]