[][src]Struct entab::readers::chemstation::ChemstationMsReader

pub struct ChemstationMsReader<'r> { /* fields omitted */ }

A reader for a Chemstation MS file [this reader was autogenerated via macro]

Implementations

impl<'r> ChemstationMsReader<'r>[src]

pub fn new(rb: ReadBuffer<'r>, params: ()) -> Result<Self, EtError>[src]

Create a new instance of the reader

pub fn next(&mut self) -> Result<Option<ChemstationMsRecord>, EtError>[src]

Return the specialized version of this record.

To get the "generic" version, please use the next_record method from the RecordReader trait.

Trait Implementations

impl<'r> Debug for ChemstationMsReader<'r>[src]

impl<'r> RecordReader for ChemstationMsReader<'r>[src]

fn next_record(&mut self) -> Result<Option<Vec<Value<'_>>>, EtError>[src]

The next record, expressed as a Vec of Values.

fn headers(&self) -> Vec<String>[src]

The headers for this Reader.

fn metadata(&self) -> BTreeMap<String, Value<'_>>[src]

The metadata for this Reader.

Auto Trait Implementations

impl<'r> !RefUnwindSafe for ChemstationMsReader<'r>

impl<'r> !Send for ChemstationMsReader<'r>

impl<'r> !Sync for ChemstationMsReader<'r>

impl<'r> Unpin for ChemstationMsReader<'r>

impl<'r> !UnwindSafe for ChemstationMsReader<'r>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.