pub struct Join<A, B>(pub A, pub B);Tuple Fields§
§0: A§1: BTrait Implementations§
Source§impl<A: MetaTuple, B: MetaTuple> MetaBox for Join<A, B>
impl<A: MetaTuple, B: MetaTuple> MetaBox for Join<A, B>
fn as_erased<'t>(&self) -> ErasedInner<'_>
fn as_erased_mut(&mut self) -> ErasedInnerMut<'_>
Source§impl<A: MetaTuple, B: MetaTuple> MetaTuple for Join<A, B>
impl<A: MetaTuple, B: MetaTuple> MetaTuple for Join<A, B>
Source§fn join<T: 'static>(self, other: T) -> Join<Self, MetaItem<T>>where
Self: Sized,
fn join<T: 'static>(self, other: T) -> Join<Self, MetaItem<T>>where
Self: Sized,
Join with another concrete value.
Source§fn join_ref<T: 'static>(self, other: &T) -> Join<Self, &MetaItem<T>>where
Self: Sized,
fn join_ref<T: 'static>(self, other: &T) -> Join<Self, &MetaItem<T>>where
Self: Sized,
Join with a reference to a concrete value. Read more
impl<A: Copy, B: Copy> Copy for Join<A, B>
Auto Trait Implementations§
impl<A, B> Freeze for Join<A, B>
impl<A, B> RefUnwindSafe for Join<A, B>where
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for Join<A, B>
impl<A, B> Sync for Join<A, B>
impl<A, B> Unpin for Join<A, B>
impl<A, B> UnwindSafe for Join<A, B>where
A: UnwindSafe,
B: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more