rexlang-proc-macro 3.9.2

Rex: A strongly-typed, pure, implicitly parallel functional programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Rex Proc Macros (`rexlang-proc-macro`)

This crate provides procedural macros for bridging Rust types and Rex values.

## `#[derive(Rex)]`

The derive generates:

- an ADT declaration suitable for injection into an `Engine`
- `IntoValue` / `FromValue` implementations to convert between Rust values and `rex_engine::Value`

It’s intended for host applications embedding Rex and exposing domain-specific data types.