pub unsafe trait BundleFromComponents { }
Expand description
Creates a Bundle
by taking it from internal storage.
§Safety
Manual implementations of this trait are unsupported.
That is, there is no safe way to implement this trait, and you must not do so.
If you want a type to implement Bundle
, you must use derive@Bundle
.
Implementations on Foreign Types§
impl BundleFromComponents for ()
impl<B: BundleFromComponents> BundleFromComponents for (B₁, B₂, …, Bₙ)
This trait is implemented for tuples up to 16 items long.