[][src]Enum ilda_idtf::SubsectionReaderKind

pub enum SubsectionReaderKind<R> where
    R: Read
{ Coords3dIndexedColor(Coords3dIndexedColorReader<R>), Coords2dIndexedColor(Coords2dIndexedColorReader<R>), ColorPalette(ColorPaletteReader<R>), Coords3dTrueColor(Coords3dTrueColorReader<R>), Coords2dTrueColor(Coords2dTrueColorReader<R>), }

The subsection reader kind determined via the header's format field.

Variants

Coords3dIndexedColor(Coords3dIndexedColorReader<R>)
Coords2dIndexedColor(Coords2dIndexedColorReader<R>)
ColorPalette(ColorPaletteReader<R>)
Coords3dTrueColor(Coords3dTrueColorReader<R>)
Coords2dTrueColor(Coords2dTrueColorReader<R>)

Trait Implementations

impl<R> From<SubsectionReader<R, ColorPalette>> for SubsectionReaderKind<R> where
    R: Read
[src]

impl<R> From<SubsectionReader<R, Coords2dIndexedColor>> for SubsectionReaderKind<R> where
    R: Read
[src]

impl<R> From<SubsectionReader<R, Coords2dTrueColor>> for SubsectionReaderKind<R> where
    R: Read
[src]

impl<R> From<SubsectionReader<R, Coords3dIndexedColor>> for SubsectionReaderKind<R> where
    R: Read
[src]

impl<R> From<SubsectionReader<R, Coords3dTrueColor>> for SubsectionReaderKind<R> where
    R: Read
[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for SubsectionReaderKind<R> where
    R: RefUnwindSafe

impl<R> Send for SubsectionReaderKind<R> where
    R: Send

impl<R> Sync for SubsectionReaderKind<R> where
    R: Sync

impl<R> Unpin for SubsectionReaderKind<R> where
    R: Unpin

impl<R> UnwindSafe for SubsectionReaderKind<R> where
    R: UnwindSafe

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.