#variant #serialization #dynamic #datamanagement #namedvalues

aloe-variant

Aloe-Variant is a Rust crate providing dynamically typed variant objects for complex data handling akin to scripting languages. This crate is a translation of the c++ juce module serving the same function.

2 releases

Uses new Rust 2024

new 0.1.1 Apr 2, 2025
0.1.0 Apr 2, 2025

#125 in #dynamic

Download history 88/week @ 2025-03-28

88 downloads per month
Used in 179 crates (26 directly)

GPL-3.0 license

265KB
2K SLoC

Aloe-Variant

Aloe-Variant is a Rust crate providing a flexible mechanism for dynamically typed variant objects akin to those found in scripting languages. It is designed for situations requiring complex data storage and manipulation through primitive and dynamically typed objects while ensuring type safety and extensibility within Rust.

Features

  • Var: A versatile variant class for holding primitive values, strings, and dynamically managed objects. Serializable to/from JSON or a proprietary binary format.
  • NamedValueSet: Stores key-value pairs of Var objects, enabling dynamic property retrieval and management.
  • VarNativeFunction: Defines callable functions with flexible argument handling, facilitating advanced operations and callbacks.

Usage

This crate leverages Rust's powerful type system to simulate the flexibility of dynamically typed languages. Key structures include:

  • Var: Acts as the primary storage unit, capable of holding different data types dynamically.

    let mut var = Var::default();
    var = Var::from("A sample string");
    
  • NamedValueSet: Enables storing and retrieving Var objects via string identifiers.

    let mut nvs = NamedValueSet::default();
    nvs.set("key", Var::from(42));
    

Leverage Aloe-Variant for enhancing Rust applications that require flexibility in data representation while maintaining type safety.

License

This project is licensed under the GPL-3.0 License.

Author

Developed by klebs (tpk3.mx@gmail.com).


This README.md file was generated by an AI model and may not be 100% accurate however it should be pretty good.

This crate is a translation of the JUCE module.

JUCE is a c++ software framework for developing high performance audio applications.

Usage falls under the GPLv3 as well as the JUCE commercial license.

See github.com/juce-framework/JUCE and the JUCE license page for details.

This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.

Dependencies

~12–26MB
~358K SLoC