Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/unknownrori/singly-rs

Simple, Lighweight and "not" thread safe Singleton instance but it's depend on the usage
https://github.com/unknownrori/singly-rs

nostd rust-lang singleton

Last synced: about 4 hours ago
JSON representation

Simple, Lighweight and "not" thread safe Singleton instance but it's depend on the usage

Awesome Lists containing this project

README

        

# Singly

Simple, Lighweight and "not" thread safe Singleton instance but it depend on the usage,
consult the docs for more information regarding thread safety, feel free to make thread safe wrapper

## Features

* Set value to the instance with type.
* Get reference value to the instance with type.
* Get mutable reference value to the instance with type.
* Work at `no_std` environment

## Examples

```rs
fn main() {
// Create the Singleton instance
let mut instance = singly::Singleton::new();

/// Set the i32 type to 12
instance.set(12i32);

/// Get mutable reference i32 type and set it to 14
let a = instance.get_mut::();
*a = 14;

assert_eq!(instance.get::(), &14);

}
```

## Installation

```sh
cargo add singly
```

## License

This project is licensed under MIT