[][src]Trait runestick::UnsafeToValue

pub trait UnsafeToValue {
    unsafe fn unsafe_to_value(self, vm: &mut Vm) -> Result<ValuePtr, VmError>;
}

Trait for unsafe conversion of value types into values.

Required methods

unsafe fn unsafe_to_value(self, vm: &mut Vm) -> Result<ValuePtr, VmError>

Convert into a value.

Loading content...

Implementors

impl<'a> UnsafeToValue for &'a Bytes[src]

impl<'a> UnsafeToValue for &'a mut Bytes[src]

impl<T> UnsafeToValue for T where
    T: ToValue
[src]

Loading content...