pub trait TypeTagResolver {
    // Required method
    fn get_type_tag(&self, type_: &Type) -> Result<TypeTag, ExecutionError>;
}

Required Methods§

source

fn get_type_tag(&self, type_: &Type) -> Result<TypeTag, ExecutionError>

Implementors§