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.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".