pub trait TryIntoRant: Sized {
    fn try_into_rant(self) -> Result<RantValue, ValueError>;
}
Expand description

Enables fallible conversion into a RantValue.

Required methods

Convert to a RantValue.

Implementations on Foreign Types

Implementors