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

Enables fallible conversion from a RantValue.

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