pub struct BundleChain<A: Bundle, B: Bundle>(pub A, pub B);
Tuple Fields§
§0: A
§1: B
Trait Implementations§
Source§impl<A: Bundle, B: Bundle> Bundle for BundleChain<A, B>
impl<A: Bundle, B: Bundle> Bundle for BundleChain<A, B>
fn initialize_into(self, access: &ArchetypeEntityRowAccess<'_>)
Source§impl<A: Bundle, B: Bundle> BundleColumns for BundleChain<A, B>
impl<A: Bundle, B: Bundle> BundleColumns for BundleChain<A, B>
fn columns_static() -> Vec<ArchetypeColumnInfo>
fn columns(&self) -> Vec<ArchetypeColumnInfo>
Auto Trait Implementations§
impl<A, B> Freeze for BundleChain<A, B>
impl<A, B> RefUnwindSafe for BundleChain<A, B>where
A: RefUnwindSafe,
B: RefUnwindSafe,
impl<A, B> Send for BundleChain<A, B>
impl<A, B> Sync for BundleChain<A, B>
impl<A, B> Unpin for BundleChain<A, B>
impl<A, B> UnwindSafe for BundleChain<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