[][src]Struct safer_ffi::tuple::Tuple6

#[repr(C)]pub struct Tuple6<T0, T1, T2, T3, T4, T5> {
    pub _0: T0,
    pub _1: T1,
    pub _2: T2,
    pub _3: T3,
    pub _4: T4,
    pub _5: T5,
}

Fields

_0: T0_1: T1_2: T2_3: T3_4: T4_5: T5

Trait Implementations

impl<T0: Debug, T1: Debug, T2: Debug, T3: Debug, T4: Debug, T5: Debug> Debug for Tuple6<T0, T1, T2, T3, T4, T5>[src]

impl<T0, T1, T2, T3, T4, T5> ReprC for Tuple6<T0, T1, T2, T3, T4, T5> 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>,
    T4: ReprC,
    <T4 as ReprC>::CLayout: CType<OPAQUE_KIND = Concrete>,
    T5: ReprC,
    <T5 as ReprC>::CLayout: CType<OPAQUE_KIND = Concrete>,
    T0: ReprC,
    T1: ReprC,
    T2: ReprC,
    T3: ReprC,
    T4: ReprC,
    T5: ReprC
[src]

type CLayout = Tuple6_Layout<T0, T1, T2, T3, T4, T5>

The CType having the same layout as Self.

Auto Trait Implementations

impl<T0, T1, T2, T3, T4, T5> RefUnwindSafe for Tuple6<T0, T1, T2, T3, T4, T5> where
    T0: RefUnwindSafe,
    T1: RefUnwindSafe,
    T2: RefUnwindSafe,
    T3: RefUnwindSafe,
    T4: RefUnwindSafe,
    T5: RefUnwindSafe

impl<T0, T1, T2, T3, T4, T5> Send for Tuple6<T0, T1, T2, T3, T4, T5> where
    T0: Send,
    T1: Send,
    T2: Send,
    T3: Send,
    T4: Send,
    T5: Send

impl<T0, T1, T2, T3, T4, T5> Sync for Tuple6<T0, T1, T2, T3, T4, T5> where
    T0: Sync,
    T1: Sync,
    T2: Sync,
    T3: Sync,
    T4: Sync,
    T5: Sync

impl<T0, T1, T2, T3, T4, T5> Unpin for Tuple6<T0, T1, T2, T3, T4, T5> where
    T0: Unpin,
    T1: Unpin,
    T2: Unpin,
    T3: Unpin,
    T4: Unpin,
    T5: Unpin

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