pub struct Join<A, B>(pub A, pub B);Expand description
Joins 2 MetaTuples.
Tuple Fields§
§0: A§1: BTrait Implementations§
Source§impl<A: MetaTuple, B: MetaTuple> MetaAny for Join<A, B>
impl<A: MetaTuple, B: MetaTuple> MetaAny for Join<A, B>
fn as_erased<'t>(&self) -> ErasedInner<'_>
fn as_erased_mut(&mut self) -> ErasedInnerMut<'_>
fn as_erased_ptr(&self) -> ErasedInnerPtr<'_>
Source§impl<A: MetaTuple, B: MetaTuple> MetaTuple for Join<A, B>
impl<A: MetaTuple, B: MetaTuple> MetaTuple for Join<A, B>
Source§fn get_mut_ptr<T: 'static>(&self) -> Option<*mut T>
fn get_mut_ptr<T: 'static>(&self) -> Option<*mut T>
Obtain a mutable item as pointer, if exists.
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
Source§fn join_mut<T: 'static>(self, other: &mut T) -> Join<Self, &mut MetaItem<T>>where
Self: Sized,
fn join_mut<T: 'static>(self, other: &mut T) -> Join<Self, &mut MetaItem<T>>where
Self: Sized,
Join with a mutable reference to a concrete value.
Source§fn join_tuple<T: MetaTuple>(self, other: T) -> Join<Self, T>where
Self: Sized,
fn join_tuple<T: MetaTuple>(self, other: T) -> Join<Self, T>where
Self: Sized,
Join with another
MetaTuple.Source§fn join_dyn_ref(self, other: &dyn MetaAny) -> Join<Self, &DynMetaTuple>where
Self: Sized,
fn join_dyn_ref(self, other: &dyn MetaAny) -> Join<Self, &DynMetaTuple>where
Self: Sized,
Join with a &dyn MetaAny.
Source§fn join_dyn_mut(self, other: &mut dyn MetaAny) -> Join<Self, &mut DynMetaTuple>where
Self: Sized,
fn join_dyn_mut(self, other: &mut dyn MetaAny) -> Join<Self, &mut DynMetaTuple>where
Self: Sized,
Join with a
&mut dyn MetaAny.impl<A: Copy, B: Copy> Copy for Join<A, B>
impl<A: Eq, B: Eq> Eq for Join<A, B>
impl<A, B> StructuralPartialEq 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