Struct safer_ffi::tuple::Tuple5

source ·
#[repr(C)]
pub struct Tuple5<T0, T1, T2, T3, T4> { pub _0: T0, pub _1: T1, pub _2: T2, pub _3: T3, pub _4: T4, }
Expand description

§C Layout

Fields§

§_0: T0§_1: T1§_2: T2§_3: T3§_4: T4

Trait Implementations§

source§

impl<T0: Debug, T1: Debug, T2: Debug, T3: Debug, T4: Debug> Debug for Tuple5<T0, T1, T2, T3, T4>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T0, T1, T2, T3, T4> ReprC for Tuple5<T0, T1, T2, T3, T4>

§

type CLayout = Tuple5_Layout<T0, T1, T2, T3, T4>

The CType having the same layout as Self.
source§

fn is_valid(_it: &Self::CLayout) -> bool

Sanity checks that can be performed on an instance of the CType layout. Read more

Auto Trait Implementations§

§

impl<T0, T1, T2, T3, T4> Freeze for Tuple5<T0, T1, T2, T3, T4>
where T0: Freeze, T1: Freeze, T2: Freeze, T3: Freeze, T4: Freeze,

§

impl<T0, T1, T2, T3, T4> RefUnwindSafe for Tuple5<T0, T1, T2, T3, T4>

§

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

§

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

§

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

§

impl<T0, T1, T2, T3, T4> UnwindSafe for Tuple5<T0, T1, T2, T3, T4>
where T0: UnwindSafe, T1: UnwindSafe, T2: UnwindSafe, T3: UnwindSafe, T4: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CompatExt for T

source§

fn compat(self) -> Compat<T>

Applies the Compat adapter by value. Read more
source§

fn compat_ref(&self) -> Compat<&T>

Applies the Compat adapter by shared reference. Read more
source§

fn compat_mut(&mut self) -> Compat<&mut T>

Applies the Compat adapter by mutable reference. Read more
source§

impl<T> FitForCBox for T

§

type CBoxWrapped = Box_<T>

Available on crate feature alloc only.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ManuallyDropMut for T

§

type Ret = ManuallyDrop<T>

source§

fn manually_drop_mut<'__>(&'__ mut self) -> &'__ mut ManuallyDrop<T>

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> UpcastAny for T
where T: 'static,

source§

fn upcast_any(&self) -> &(dyn Any + 'static)

Available on crate feature headers only.