pub trait FromRantArgs: Sized {
    fn from_rant_args(args: Vec<RantValue>) -> ValueResult<Self>;
    fn as_rant_params() -> Vec<Parameter>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
; }
Expand description

Converts from argument list to tuple of impl TryFromRant values

Required Methods

Implementations on Foreign Types

Implementors