Struct libpijul::pristine::Pair[][src]

#[repr(C)]pub struct Pair<A, B> {
    pub a: A,
    pub b: B,
}

Fields

a: Ab: B

Trait Implementations

impl<A: Clone, B: Clone> Clone for Pair<A, B>[src]

impl<A: Copy, B: Copy> Copy for Pair<A, B>[src]

impl<A: Debug, B: Debug> Debug for Pair<A, B>[src]

impl<A: Eq, B: Eq> Eq for Pair<A, B>[src]

impl<A: Ord, B: Ord> Ord for Pair<A, B>[src]

impl<A: PartialEq, B: PartialEq> PartialEq<Pair<A, B>> for Pair<A, B>[src]

impl<A: PartialOrd, B: PartialOrd> PartialOrd<Pair<A, B>> for Pair<A, B>[src]

impl<A: Storable, B: Storable> Storable for Pair<A, B>[src]

type PageReferences = Chain<A::PageReferences, B::PageReferences>

An iterator over the offsets to pages contained in this value. Only values from this crate can generate non-empty iterators, but combined values (like tuples) must chain the iterators returned by method page_offsets. Read more

impl<A, B> StructuralEq for Pair<A, B>[src]

impl<A, B> StructuralPartialEq for Pair<A, B>[src]

impl<A: Ord + UnsizedStorable, B: Ord + UnsizedStorable> UnsizedStorable for Pair<A, B>[src]

Auto Trait Implementations

impl<A, B> RefUnwindSafe for Pair<A, B> where
    A: RefUnwindSafe,
    B: RefUnwindSafe

impl<A, B> Send for Pair<A, B> where
    A: Send,
    B: Send

impl<A, B> Sync for Pair<A, B> where
    A: Sync,
    B: Sync

impl<A, B> Unpin for Pair<A, B> where
    A: Unpin,
    B: Unpin

impl<A, B> UnwindSafe for Pair<A, B> where
    A: UnwindSafe,
    B: 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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,