[][src]Struct safer_ffi::tuple::Tuple4

#[repr(C)]pub struct Tuple4<T0, T1, T2, T3> {
    pub _0: T0,
    pub _1: T1,
    pub _2: T2,
    pub _3: T3,
}

Fields

_0: T0_1: T1_2: T2_3: T3

Trait Implementations

impl<T0: Debug, T1: Debug, T2: Debug, T3: Debug> Debug for Tuple4<T0, T1, T2, T3>[src]

impl<T0, T1, T2, T3> ReprC for Tuple4<T0, T1, T2, T3> where
    T0: ReprC,
    <T0 as ReprC>::CLayout: CType<OPAQUE_KIND = Concrete>,
    T1: ReprC,
    <T1 as ReprC>::CLayout: CType<OPAQUE_KIND = Concrete>,
    T2: ReprC,
    <T2 as ReprC>::CLayout: CType<OPAQUE_KIND = Concrete>,
    T3: ReprC,
    <T3 as ReprC>::CLayout: CType<OPAQUE_KIND = Concrete>,
    T0: ReprC,
    T1: ReprC,
    T2: ReprC,
    T3: ReprC
[src]

type CLayout = Tuple4_Layout<T0, T1, T2, T3>

The CType having the same layout as Self.

Auto Trait Implementations

impl<T0, T1, T2, T3> RefUnwindSafe for Tuple4<T0, T1, T2, T3> where
    T0: RefUnwindSafe,
    T1: RefUnwindSafe,
    T2: RefUnwindSafe,
    T3: RefUnwindSafe

impl<T0, T1, T2, T3> Send for Tuple4<T0, T1, T2, T3> where
    T0: Send,
    T1: Send,
    T2: Send,
    T3: Send

impl<T0, T1, T2, T3> Sync for Tuple4<T0, T1, T2, T3> where
    T0: Sync,
    T1: Sync,
    T2: Sync,
    T3: Sync

impl<T0, T1, T2, T3> Unpin for Tuple4<T0, T1, T2, T3> where
    T0: Unpin,
    T1: Unpin,
    T2: Unpin,
    T3: Unpin

impl<T0, T1, T2, T3> UnwindSafe for Tuple4<T0, T1, T2, T3> where
    T0: UnwindSafe,
    T1: UnwindSafe,
    T2: UnwindSafe,
    T3: 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, 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.