Không có mô tả

david 9d0f4df6a1 Use the 'serde' feature for Data 10 tháng trước cách đây
examples 550157111f Added `cast_into` feature for Data 10 tháng trước cách đây
src 9d0f4df6a1 Use the 'serde' feature for Data 10 tháng trước cách đây
.gitignore 0887d035ae Adds SharedData<T> 11 tháng trước cách đây
Cargo.lock 9d0f4df6a1 Use the 'serde' feature for Data 10 tháng trước cách đây
Cargo.toml 9d0f4df6a1 Use the 'serde' feature for Data 10 tháng trước cách đây
LICENSE c6403ea9d9 Updated LICENSE and README.md 11 tháng trước cách đây
README.md e792ec617c Expanded shared for Shared and Data 10 tháng trước cách đây

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.