Trait wasmi_core::WrapInto

source ·
pub trait WrapInto<T> {
    // Required method
    fn wrap_into(self) -> T;
}
Expand description

Convert one type to another by wrapping.

Required Methods§

source

fn wrap_into(self) -> T

Convert one type to another by wrapping.

Implementations on Foreign Types§

source§

impl WrapInto<F32> for i64

source§

impl WrapInto<F32> for u64

source§

impl WrapInto<i8> for i32

source§

fn wrap_into(self) -> i8

source§

impl WrapInto<i16> for i64

source§

impl WrapInto<f32> for f64

source§

impl WrapInto<i8> for i64

source§

fn wrap_into(self) -> i8

source§

impl WrapInto<i32> for i64

source§

impl WrapInto<i16> for i32

Implementors§