Expand description
Logical type conversions (Rboolean, bool, Option variants).
Handles the three R logical states (TRUE, FALSE, NA) and maps them to Rust:
| Rust Type | NA Handling |
|---|---|
Rboolean | Error on NA |
bool | Error on NA |
Option<Rboolean> | None on NA |
Option<bool> | None on NA |