pub trait FromRant: Sized {
    fn from_rant(val: RantValue) -> Self;

    fn is_optional_param_type() -> bool { ... }
}

Required Methods

Converts from a RantValue.

Provided Methods

Returns true if the type can be used to represent an optional Rant parameter in native functions; otherwise, false.

Implementations on Foreign Types

Implementors