//! Convert a Rust enum to a Julia enum.
use crate::;
/// Trait to convert a Rust enum to a Julia enum.
///
/// This trait is automatically derived when bindings for enums are generated with
/// `JlrsCore.Reflect.reflect`.
///
/// Safety: the implementation must correctly map the Rust to the Julia enum.
pub unsafe