Painless globals in Rust. Works with any type that implements Default trait.
When I first started studying Rust, getting a simple global variable was oddly difficult. As I became more experienced, I got tired of these weird macros hanging around my code. This is a library for people who like the simplicity of global singleton in a single one liner and instantiation with standard Default trait. This library also uses no standard library by default so it's great for web assembly and embedded development where you want as little extra as possible. Enjoy.
toml
[dependencies]
globals = "0.1.3"
- [x] #![no_std]
+ alloc
- [x] uses lazy_mutex!
under the covers (battle tested lazy static mutexes)
- [x] leaves your code nice and clean
```rust struct Foo { v:u32 }
impl Default for Foo { fn default() -> Self { Foo {v:42} } }
let f = globals::get::
assert_eq!(f.v,42); ```
This project is licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in globals
by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.