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

#[repr(C)]pub struct pair<_T1, _T2> {
    pub first: _T1,
    pub second: _T2,
    pub _phantom_0: PhantomData<UnsafeCell<_T1>>,
    pub _phantom_1: PhantomData<UnsafeCell<_T2>>,
}

Fields

first: _T1second: _T2_phantom_0: PhantomData<UnsafeCell<_T1>>_phantom_1: PhantomData<UnsafeCell<_T2>>

Trait Implementations

impl<_T1: Debug, _T2: Debug> Debug for pair<_T1, _T2>[src]

impl<_T1, _T2> Default for pair<_T1, _T2>[src]

Auto Trait Implementations

impl<_T1, _T2> !RefUnwindSafe for pair<_T1, _T2>

impl<_T1, _T2> Send for pair<_T1, _T2> where
    _T1: Send,
    _T2: Send

impl<_T1, _T2> !Sync for pair<_T1, _T2>

impl<_T1, _T2> Unpin for pair<_T1, _T2> where
    _T1: Unpin,
    _T2: Unpin

impl<_T1, _T2> UnwindSafe for pair<_T1, _T2> where
    _T1: UnwindSafe,
    _T2: 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.