Struct emf_core_base_rs::library::library_loader::UnknownLoader[][src]

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

Type erased library loader.

Methods from Deref<Target = NonNullConst<LibraryLoaderInterface>>

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 UnknownLoader<'loader>[src]

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

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

impl Deref for UnknownLoader<'_>[src]

type Target = NonNullConst<LibraryLoaderInterface>

The resulting type after dereferencing.

impl DerefMut for UnknownLoader<'_>[src]

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

impl LibraryLoaderABICompat for UnknownLoader<'_>[src]

impl<'a> LibraryLoaderAPI<'a> for UnknownLoader<'a>[src]

type InternalLoader = InvalidLoader

Type of the internal loader.

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

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

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

impl Send for UnknownLoader<'_>[src]

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

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

impl Sync for UnknownLoader<'_>[src]

Auto Trait Implementations

impl<'loader> RefUnwindSafe for UnknownLoader<'loader>

impl<'loader> Unpin for UnknownLoader<'loader>

impl<'loader> UnwindSafe for UnknownLoader<'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.