[][src]Struct lc3tools_sys::root::std::pointer_to_unary_function

#[repr(C)]pub struct pointer_to_unary_function<_Arg, _Result> {
    pub _M_ptr: Option<unsafe extern "C" fn(arg1: _Arg) -> _Result>,
    pub _phantom_0: PhantomData<UnsafeCell<_Arg>>,
    pub _phantom_1: PhantomData<UnsafeCell<_Result>>,
}

Fields

_M_ptr: Option<unsafe extern "C" fn(arg1: _Arg) -> _Result>_phantom_0: PhantomData<UnsafeCell<_Arg>>_phantom_1: PhantomData<UnsafeCell<_Result>>

Trait Implementations

impl<_Arg: Clone, _Result: Clone> Clone for pointer_to_unary_function<_Arg, _Result>[src]

impl<_Arg: Copy, _Result: Copy> Copy for pointer_to_unary_function<_Arg, _Result>[src]

impl<_Arg: Debug, _Result: Debug> Debug for pointer_to_unary_function<_Arg, _Result>[src]

impl<_Arg, _Result> Default for pointer_to_unary_function<_Arg, _Result>[src]

Auto Trait Implementations

impl<_Arg, _Result> !RefUnwindSafe for pointer_to_unary_function<_Arg, _Result>

impl<_Arg, _Result> Send for pointer_to_unary_function<_Arg, _Result> where
    _Arg: Send,
    _Result: Send

impl<_Arg, _Result> !Sync for pointer_to_unary_function<_Arg, _Result>

impl<_Arg, _Result> Unpin for pointer_to_unary_function<_Arg, _Result> where
    _Arg: Unpin,
    _Result: Unpin

impl<_Arg, _Result> UnwindSafe for pointer_to_unary_function<_Arg, _Result> where
    _Arg: UnwindSafe,
    _Result: UnwindSafe

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.