暫無描述

david 6dc644bb52 cargo clippy fix for Data 10 月之前
examples e792ec617c Expanded shared for Shared and Data 10 月之前
src 6dc644bb52 cargo clippy fix for Data 10 月之前
.gitignore 0887d035ae Adds SharedData<T> 11 月之前
Cargo.lock e792ec617c Expanded shared for Shared and Data 10 月之前
Cargo.toml e792ec617c Expanded shared for Shared and Data 10 月之前
LICENSE c6403ea9d9 Updated LICENSE and README.md 11 月之前
README.md e792ec617c Expanded shared for Shared and Data 10 月之前

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.