[][src]Struct wasmer_runtime_c_api::wasmer_byte_array

#[repr(C)]
pub struct wasmer_byte_array {
    pub bytes: *const u8,
    pub bytes_len: u32,
}

Fields

bytes: *const u8bytes_len: u32

Methods

impl wasmer_byte_array[src]

pub unsafe fn as_slice<'a>(&self) -> &'a [u8][src]

Get the data as a slice

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

Copy the data into an owned Vec

pub unsafe fn as_str<'a>(&self) -> Result<&'a str, Utf8Error>[src]

Read the data as a &str, returns an error if the string is not valid UTF8

Auto Trait Implementations

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.