pub struct BuiltEntity<'a> { /* private fields */ }Expand description
The output of an EntityBuilder, suitable for passing to
World::spawn or World::insert
Trait Implementations§
Source§impl Drop for BuiltEntity<'_>
impl Drop for BuiltEntity<'_>
Source§impl DynamicBundle for BuiltEntity<'_>
impl DynamicBundle for BuiltEntity<'_>
Auto Trait Implementations§
impl<'a> Freeze for BuiltEntity<'a>
impl<'a> RefUnwindSafe for BuiltEntity<'a>
impl<'a> Send for BuiltEntity<'a>
impl<'a> Sync for BuiltEntity<'a>
impl<'a> Unpin for BuiltEntity<'a>
impl<'a> !UnwindSafe for BuiltEntity<'a>
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
Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more