#object #manager #id

gom

A simple Rust global object manager

8 releases

0.1.7 Mar 4, 2025
0.1.6 Feb 8, 2025

#70 in #id

Download history 54/week @ 2025-01-29 607/week @ 2025-02-05 17/week @ 2025-02-12 9/week @ 2025-02-19 61/week @ 2025-02-26 76/week @ 2025-03-05 6/week @ 2025-03-12

153 downloads per month
Used in gle

MIT license

17KB
255 lines

Global Object Manager (GOM)

This is a simple global object manager that makes it easier for you to use global objects in Rust.

Note

You need to add crate constcat to support macro id!(...).

This is a flaw in Rust.

Example

use gom::*;

const VEC: &str = id!(Vec);
const ID: &str = id!(@VEC.Bar);

fn main() {
    Registry::register(ID, vec![1, 2, 3]);

    Registry::<Vec<i32>>::apply(ID, |v| {
        v.push(4);
    });

    let v = Registry::<Vec<i32>>::remove(ID);
    println!("{:?}", v);
}

Dependencies

~25KB