Struct emf_core_base_rs_ffi::library::library_loader::LibraryLoaderInterface[][src]

#[repr(C)]
pub struct LibraryLoaderInterface { pub loader: Option<NonNull<LibraryLoader>>, pub load_fn: LoadFn, pub unload_fn: UnloadFn, pub get_data_symbol_fn: GetDataSymbolFn, pub get_function_symbol_fn: GetFnSymbolFn, pub get_internal_interface_fn: GetInternalInterfaceFn, }

Interface of a library loader.

Fields

loader: Option<NonNull<LibraryLoader>>load_fn: LoadFnunload_fn: UnloadFnget_data_symbol_fn: GetDataSymbolFnget_function_symbol_fn: GetFnSymbolFnget_internal_interface_fn: GetInternalInterfaceFn

Trait Implementations

impl Clone for LibraryLoaderInterface[src]

impl Copy for LibraryLoaderInterface[src]

impl Debug for LibraryLoaderInterface[src]

impl Eq for LibraryLoaderInterface[src]

impl LibraryLoaderBinding for LibraryLoaderInterface[src]

impl Ord for LibraryLoaderInterface[src]

impl PartialEq<LibraryLoaderInterface> for LibraryLoaderInterface[src]

impl PartialOrd<LibraryLoaderInterface> for LibraryLoaderInterface[src]

impl Send for LibraryLoaderInterface[src]

impl StructuralEq for LibraryLoaderInterface[src]

impl StructuralPartialEq for LibraryLoaderInterface[src]

impl Sync for LibraryLoaderInterface[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.