pub trait IntoValue {
// Required method
fn into_value(self) -> Value;
}Expand description
A Rust-value to Script-value conversion that consumes the input.
Required Methods§
Sourcefn into_value(self) -> Value
fn into_value(self) -> Value
Converts this type into the related Value variant.