[][src]Struct sabre_sdk::WasmBuffer

pub struct WasmBuffer { /* fields omitted */ }

A WasmBuffer is a wrapper around a wasm pointer.

It contains a raw wasm pointer to location in executor memory and a bytes repesentation of it's contents.

It offers methods for accessing the data stored at the location referenced by the raw pointer.

Methods

impl WasmBuffer[src]

pub unsafe fn new(buffer: &[u8]) -> Result<WasmBuffer, WasmSdkError>[src]

pub unsafe fn from_raw(raw: WasmPtr) -> Result<WasmBuffer, WasmSdkError>[src]

pub unsafe fn from_list(
    ptr: WasmPtrList
) -> Result<Vec<WasmBuffer>, WasmSdkError>
[src]

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

pub fn into_raw(&self) -> WasmPtr[src]

pub fn into_string(&self) -> Result<String, WasmSdkError>[src]

Auto Trait Implementations

impl Send for WasmBuffer

impl Sync for WasmBuffer

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 = Infallible

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

The type returned in the event of a conversion error.