Trait Bundle

Source
pub unsafe trait Bundle: DynamicBundle { }
Expand description

A statically typed collection of components

Bundles composed of exactly the same types are semantically equivalent, regardless of order. The interface of this trait is a private implementation detail.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Bundle for ()

Source§

impl<A> Bundle for (A,)
where A: Component,

Source§

impl<A, B> Bundle for (A, B)
where A: Component, B: Component,

Source§

impl<A, B, C> Bundle for (A, B, C)
where A: Component, B: Component, C: Component,

Source§

impl<A, B, C, D> Bundle for (A, B, C, D)
where A: Component, B: Component, C: Component, D: Component,

Source§

impl<A, B, C, D, E> Bundle for (A, B, C, D, E)
where A: Component, B: Component, C: Component, D: Component, E: Component,

Source§

impl<A, B, C, D, E, F> Bundle for (A, B, C, D, E, F)

Source§

impl<A, B, C, D, E, F, G> Bundle for (A, B, C, D, E, F, G)

Source§

impl<A, B, C, D, E, F, G, H> Bundle for (A, B, C, D, E, F, G, H)

Source§

impl<A, B, C, D, E, F, G, H, I> Bundle for (A, B, C, D, E, F, G, H, I)

Source§

impl<A, B, C, D, E, F, G, H, I, J> Bundle for (A, B, C, D, E, F, G, H, I, J)

Source§

impl<A, B, C, D, E, F, G, H, I, J, K> Bundle for (A, B, C, D, E, F, G, H, I, J, K)

Source§

impl<A, B, C, D, E, F, G, H, I, J, K, L> Bundle for (A, B, C, D, E, F, G, H, I, J, K, L)

Source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M> Bundle for (A, B, C, D, E, F, G, H, I, J, K, L, M)

Source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N> Bundle for (A, B, C, D, E, F, G, H, I, J, K, L, M, N)

Source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O> Bundle for (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O)

Implementors§