Trait runestick::ToValue[][src]

pub trait ToValue: Sized {
    fn to_value(self) -> Result<Value, VmError>;
}
Expand description

Trait for converting types into values.

Required methods

Convert into a value.

Implementations on Foreign Types

Coercing start..end into a Range.

Coercing start.. into a Range.

Coercing .. into a Range.

Coercing start..=end into a Range.

Coercing ..end into a Range.

Coercing ..=end into a Range.

Implementors