Nessuna descrizione

Apollo fb7135e0cb Removed un-needed clone on lock_timeout 4 mesi fa
examples f9f642af17 Separation of Shared & Data 4 mesi fa
src fb7135e0cb Removed un-needed clone on lock_timeout 4 mesi fa
.gitignore 0887d035ae Adds SharedData<T> 7 mesi fa
Cargo.lock f9f642af17 Separation of Shared & Data 4 mesi fa
Cargo.toml f9f642af17 Separation of Shared & Data 4 mesi fa
LICENSE c6403ea9d9 Updated LICENSE and README.md 7 mesi fa
README.md f9f642af17 Separation of Shared & Data 4 mesi fa

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.