No Description

Steve Thielemann 42e4dc457a Implements the majority of HashMap methods 2 months ago
examples 550157111f Added `cast_into` feature for Data 2 months ago
src 42e4dc457a Implements the majority of HashMap methods 2 months ago
.gitignore 0887d035ae Adds SharedData<T> 2 months ago
Cargo.lock e792ec617c Expanded shared for Shared and Data 2 months ago
Cargo.toml 550157111f Added `cast_into` feature for Data 2 months ago
LICENSE c6403ea9d9 Updated LICENSE and README.md 2 months ago
README.md e792ec617c Expanded shared for Shared and Data 2 months ago

README.md

Shared

A Arc Mutex guarded Data.

Usage

cargo add 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.