Aucune description

Steve Thielemann af58a67e29 Separation of Shared & Data il y a 4 mois
examples f9f642af17 Separation of Shared & Data il y a 4 mois
src f9f642af17 Separation of Shared & Data il y a 4 mois
.gitignore 0887d035ae Adds SharedData<T> il y a 7 mois
Cargo.lock f9f642af17 Separation of Shared & Data il y a 4 mois
Cargo.toml f9f642af17 Separation of Shared & Data il y a 4 mois
LICENSE c6403ea9d9 Updated LICENSE and README.md il y a 7 mois
README.md f9f642af17 Separation of Shared & Data il y a 4 mois

README.md

Shared

A Arc Mutex guarded data

Usage

cargo add shared --git https://git.red-green.com/david/shared

use shared::Shared;

// Wrap your structure in Shared<S> via Shared::new(S)

Examples

To run, say doc_example just cargo run --example doc_example.