Struct it_lilo::lifter::SequentialReader[][src]

pub struct SequentialReader<'r, 'm> { /* fields omitted */ }

Reads values of basic types sequentially from the provided reader. It doesn’t check memory limits for the optimization purposes, so it could be created only by the MemoryReader::sequential_reader method.

Implementations

impl<'r, 'm> SequentialReader<'r, 'm>[src]

pub fn read_bool(&self) -> bool[src]

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

pub fn read_i8(&self) -> i8[src]

pub fn read_u16(&self) -> u16[src]

pub fn read_i16(&self) -> i16[src]

pub fn read_u32(&self) -> u32[src]

pub fn read_i32(&self) -> i32[src]

pub fn read_f32(&self) -> f32[src]

pub fn read_u64(&self) -> u64[src]

pub fn read_i64(&self) -> i64[src]

pub fn read_f64(&self) -> f64[src]

Auto Trait Implementations

impl<'r, 'm> !RefUnwindSafe for SequentialReader<'r, 'm>

impl<'r, 'm> !Send for SequentialReader<'r, 'm>

impl<'r, 'm> !Sync for SequentialReader<'r, 'm>

impl<'r, 'm> Unpin for SequentialReader<'r, 'm> where
    'm: 'r, 

impl<'r, 'm> !UnwindSafe for SequentialReader<'r, 'm>

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.