[][src]Struct iso8211::Reader

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

ISO 8211 file reader

Implementations

impl<T: Read + Seek> Reader<T>[src]

pub fn new(buffer: BufReader<T>) -> Reader<T>[src]

pub fn peek_byte(&mut self) -> ReadResult<u8>[src]

pub fn read_char(&mut self) -> ReadResult<char>[src]

pub fn read_bytes(&mut self, length: usize) -> ReadResult<Vec<u8>>[src]

pub fn read_str(&mut self, length: usize) -> ReadResult<String>[src]

pub fn read_str_ft(&mut self) -> ReadResult<String>[src]

pub fn read_str_ut(&mut self) -> ReadResult<String>[src]

pub fn read_u8(&mut self) -> ReadResult<u8>[src]

pub fn read_u8_str(&mut self, length: usize) -> ReadResult<u8>[src]

pub fn read_u64(&mut self, length: usize) -> ReadResult<u64>[src]

pub fn read_u64_str(&mut self, length: usize) -> ReadResult<u64>[src]

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for Reader<T> where
    T: 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.