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

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

Fields

_M_ptr: Option<unsafe extern "C" fn(arg1: _Arg1, arg2: _Arg2) -> _Result>_phantom_0: PhantomData<UnsafeCell<_Arg1>>_phantom_1: PhantomData<UnsafeCell<_Arg2>>_phantom_2: PhantomData<UnsafeCell<_Result>>

Trait Implementations

impl<_Arg1: Clone, _Arg2: Clone, _Result: Clone> Clone for pointer_to_binary_function<_Arg1, _Arg2, _Result>[src]

impl<_Arg1: Copy, _Arg2: Copy, _Result: Copy> Copy for pointer_to_binary_function<_Arg1, _Arg2, _Result>[src]

impl<_Arg1: Debug, _Arg2: Debug, _Result: Debug> Debug for pointer_to_binary_function<_Arg1, _Arg2, _Result>[src]

impl<_Arg1, _Arg2, _Result> Default for pointer_to_binary_function<_Arg1, _Arg2, _Result>[src]

Auto Trait Implementations

impl<_Arg1, _Arg2, _Result> !RefUnwindSafe for pointer_to_binary_function<_Arg1, _Arg2, _Result>

impl<_Arg1, _Arg2, _Result> Send for pointer_to_binary_function<_Arg1, _Arg2, _Result> where
    _Arg1: Send,
    _Arg2: Send,
    _Result: Send

impl<_Arg1, _Arg2, _Result> !Sync for pointer_to_binary_function<_Arg1, _Arg2, _Result>

impl<_Arg1, _Arg2, _Result> Unpin for pointer_to_binary_function<_Arg1, _Arg2, _Result> where
    _Arg1: Unpin,
    _Arg2: Unpin,
    _Result: Unpin

impl<_Arg1, _Arg2, _Result> UnwindSafe for pointer_to_binary_function<_Arg1, _Arg2, _Result> where
    _Arg1: UnwindSafe,
    _Arg2: 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.