[][src]Struct assembly::lvl::reader::LevelReader

pub struct LevelReader<T> { /* fields omitted */ }

A low level reader class

Methods

impl<T> LevelReader<T>[src]

pub fn new(inner: T) -> LevelReader<T>[src]

impl<T> LevelReader<T> where
    T: Read + Seek
[src]

pub fn get_chunk_header(&mut self) -> Result<ChunkHeader, FileError>[src]

Load a chunk header

pub fn get_meta_chunk_data(&mut self) -> Result<FileMetaChunkData, FileError>[src]

Get the chunk meta data

pub fn get_meta_chunk(&mut self) -> Result<Chunk<FileMetaChunkData>, FileError>[src]

Get the meta chunk

Auto Trait Implementations

impl<T> Unpin for LevelReader<T> where
    T: Unpin

impl<T> Sync for LevelReader<T> where
    T: Sync

impl<T> Send for LevelReader<T> where
    T: Send

impl<T> RefUnwindSafe for LevelReader<T> where
    T: RefUnwindSafe

impl<T> UnwindSafe for LevelReader<T> where
    T: UnwindSafe

Blanket Implementations

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.

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

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

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