Struct emf_core_base_rs::module::module_loader::NativeLoader[][src]

pub struct NativeLoader<'loader> { /* fields omitted */ }

Native module loader.

Methods from Deref<Target = NonNullConst<ModuleLoaderInterface>>

pub unsafe fn into_mut(&self) -> NonNull<T>[src]

Acquires a mutable version of the pointer.

Safety

It is undefined behavior if the underlying pointer is not already mutable.

pub unsafe fn as_ref(&self) -> &T[src]

Returns a shared reference to the value.

Safety

The same restrictions as NonNull::as_ref apply.

Trait Implementations

impl<'loader> Clone for NativeLoader<'loader>[src]

impl<'loader> Copy for NativeLoader<'loader>[src]

impl<'loader> Debug for NativeLoader<'loader>[src]

impl Deref for NativeLoader<'_>[src]

type Target = NonNullConst<ModuleLoaderInterface>

The resulting type after dereferencing.

impl DerefMut for NativeLoader<'_>[src]

impl<'loader> Eq for NativeLoader<'loader>[src]

impl ModuleLoaderABICompat for NativeLoader<'_>[src]

impl<'a> ModuleLoaderAPI<'a> for NativeLoader<'a>[src]

type InternalLoader = NativeLoaderInternal<'a>

Type of the internal loader.

impl<'loader> Ord for NativeLoader<'loader>[src]

impl<'loader> PartialEq<NativeLoader<'loader>> for NativeLoader<'loader>[src]

impl<'loader> PartialOrd<NativeLoader<'loader>> for NativeLoader<'loader>[src]

impl<'loader> StructuralEq for NativeLoader<'loader>[src]

impl<'loader> StructuralPartialEq for NativeLoader<'loader>[src]

Auto Trait Implementations

impl<'loader> RefUnwindSafe for NativeLoader<'loader>

impl<'loader> Send for NativeLoader<'loader>

impl<'loader> Sync for NativeLoader<'loader>

impl<'loader> Unpin for NativeLoader<'loader>

impl<'loader> UnwindSafe for NativeLoader<'loader>

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.