sharedlib 6.0.0

A cross-platform shared library loader.
Documentation
1
2
3
4
5
6
7
8
9
10
/// A symbol from a shared library.
pub trait Symbol<T> {
    /// Provides access to the data that this symbol references.
    ///
    /// # Unsafety
    /// If the data that this symbol references contains pointers to other things in the shared
    /// library, and `T: Clone`, we can obtain a clone of the data and use it to outlast the
    /// library. To prevent this, the return of this function should never be cloned.
    unsafe fn get(&self) -> T;
}