pub trait FromRant: Sized {
    fn from_rant(val: RantValue) -> Result<Self, ValueError>;
fn is_rant_optional() -> bool; }
Expand description

Enables conversion from a RantValue to a native type.

Required methods

Convert from a RantValue.

Returns true if the type can be used to represent an optional Rant parameter.

Implementations on Foreign Types

Implementors