Struct emf_core_base_rs_ffi::module::native_module::NativeModuleInterface[][src]

#[repr(C)]
pub struct NativeModuleInterface { pub load_fn: LoadFn, pub unload_fn: UnloadFn, pub initialize_fn: InitializeFn, pub terminate_fn: TerminateFn, pub get_interface_fn: GetInterfaceFn, pub get_module_info_fn: GetModuleInfoFn, pub get_load_dependencies_fn: GetLoadDependenciesFn, pub get_runtime_dependencies_fn: GetRuntimeDependenciesFn, pub get_exportable_interfaces_fn: GetExportableInterfacesFn, }

Interface of a native module.

Fields

load_fn: LoadFnunload_fn: UnloadFninitialize_fn: InitializeFnterminate_fn: TerminateFnget_interface_fn: GetInterfaceFnget_module_info_fn: GetModuleInfoFnget_load_dependencies_fn: GetLoadDependenciesFnget_runtime_dependencies_fn: GetRuntimeDependenciesFnget_exportable_interfaces_fn: GetExportableInterfacesFn

Trait Implementations

impl Clone for NativeModuleInterface[src]

impl Copy for NativeModuleInterface[src]

impl Debug for NativeModuleInterface[src]

impl Eq for NativeModuleInterface[src]

impl NativeModuleBinding for NativeModuleInterface[src]

impl Ord for NativeModuleInterface[src]

impl PartialEq<NativeModuleInterface> for NativeModuleInterface[src]

impl PartialOrd<NativeModuleInterface> for NativeModuleInterface[src]

impl Send for NativeModuleInterface[src]

impl StructuralEq for NativeModuleInterface[src]

impl StructuralPartialEq for NativeModuleInterface[src]

impl Sync for NativeModuleInterface[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.