[][src]Struct entab::readers::thermo_iso::ThermoDxfReader

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

[this reader was autogenerated via macro]

Implementations

impl<'r> ThermoDxfReader<'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<ThermoDxfRecord>, 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 ThermoDxfReader<'r>[src]

impl<'r> RecordReader for ThermoDxfReader<'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 ThermoDxfReader<'r>

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

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

impl<'r> Unpin for ThermoDxfReader<'r>

impl<'r> !UnwindSafe for ThermoDxfReader<'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.