sharedlib 6.0.0

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

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