[][src]Struct owasm_abi::eth::Sink

pub struct Sink { /* fields omitted */ }

Sink for returning number of arguments

Methods

impl Sink[src]

pub fn new(capacity: usize) -> Self[src]

New sink with known capacity

pub fn push<T: AbiType>(&mut self, val: T)[src]

Consume val to the Sink

pub fn drain_to(self, target: &mut Vec<u8>)[src]

Drain current Sink to the target vector

pub fn finalize_panicking(self) -> Vec<u8>[src]

Consume current Sink to produce a vector with content. May panic if declared number of arguments does not match the resulting number of bytes should be produced.

pub fn preamble_mut(&mut self) -> &mut Vec<u8>[src]

Mutable reference to the Sink preamble

pub fn heap_mut(&mut self) -> &mut Vec<u8>[src]

Mutable reference to the Sink heap

Auto Trait Implementations

impl Send for Sink

impl Sync for Sink

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.