pub trait IntoRant {
    fn into_rant(self) -> Result<RantValue, ValueError>;
}
Expand description

Enables conversion from a native type to a RantValue.

Required methods

Convert to a RantValue.

Implementations on Foreign Types

Implementors