sharedlib 6.0.0

A cross-platform shared library loader.
Documentation
1
2
3
4
5
6
use DataTracked;
use LibUnsafe;
use std::sync::Arc;

/// A pointer to shared data which uses atomic ref-counting to avoid outliving its library.
pub type DataArc<T> = DataTracked<T, Arc<LibUnsafe>>;