[][src]Struct owasm_abi::eth::Stream

pub struct Stream<'a> { /* fields omitted */ }

Stream interpretation of incoming payload

Methods

impl<'a> Stream<'a>[src]

pub fn new(raw: &'a [u8]) -> Self[src]

New stream for known payload

pub fn pop<T: AbiType>(&mut self) -> Result<T, Error>[src]

Pop next argument of known type

pub fn position(&self) -> usize[src]

Current position for the stream

pub fn advance(&mut self, amount: usize) -> Result<usize, Error>[src]

Advance stream position for amount bytes

pub fn finish_advance(&mut self)[src]

Finish current advance, advancing stream to the next 32 byte step

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

Stream payload

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

Peek next byte in stream

Auto Trait Implementations

impl<'a> Send for Stream<'a>

impl<'a> Sync for Stream<'a>

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.