Struct emf_core_base_rs::extensions::unwind_internal::UnwindInternalContextRef[][src]

pub struct UnwindInternalContextRef {
    pub _context: NonNull<Context>,
    pub _shutdown: ShutdownFn,
    pub _panic: PanicFn,
}

Borrowed context of the unwind_internal api.

Fields

_context: NonNull<Context>

Context pointer, that is passed to the shutdown and panic functions.

_shutdown: ShutdownFn

Shutdown function.

_panic: PanicFn

Panic function.

Trait Implementations

impl Clone for UnwindInternalContextRef[src]

impl Copy for UnwindInternalContextRef[src]

impl Debug for UnwindInternalContextRef[src]

impl Eq for UnwindInternalContextRef[src]

impl Ord for UnwindInternalContextRef[src]

impl PartialEq<UnwindInternalContextRef> for UnwindInternalContextRef[src]

impl PartialOrd<UnwindInternalContextRef> for UnwindInternalContextRef[src]

impl Send for UnwindInternalContextRef[src]

impl StructuralEq for UnwindInternalContextRef[src]

impl StructuralPartialEq for UnwindInternalContextRef[src]

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