Trait runestick::FromValue[][src]

pub trait FromValue: 'static + Sized {
    fn from_value(value: Value) -> Result<Self, VmError>;
}
Expand description

Trait for converting from a value.

Required methods

Try to convert to the given type, from the given value.

Implementations on Foreign Types

Implementors