pub struct TemplateContext<'a, 'w> {
pub entity: &'a mut EntityWorldMut<'w>,
pub entity_references: &'a mut SceneEntityReferences,
}Expand description
The context used to apply the current Template. This contains a reference to the entity that the template is being
applied to (via an EntityWorldMut).
Fields§
§entity: &'a mut EntityWorldMut<'w>The current entity the template is being applied to
entity_references: &'a mut SceneEntityReferencesA mapping of SceneEntityReference to Entity used for resolving #Name entity references
Implementations§
Source§impl<'a, 'w> TemplateContext<'a, 'w>
impl<'a, 'w> TemplateContext<'a, 'w>
Sourcepub fn new(
entity: &'a mut EntityWorldMut<'w>,
entity_references: &'a mut SceneEntityReferences,
) -> Self
pub fn new( entity: &'a mut EntityWorldMut<'w>, entity_references: &'a mut SceneEntityReferences, ) -> Self
Creates a new TemplateContext.
Sourcepub fn get_entity(&mut self, reference: SceneEntityReference) -> Entity
pub fn get_entity(&mut self, reference: SceneEntityReference) -> Entity
Get the entity associated with the SceneEntityReference, spawning a new one
if this is the first call with this index.
Sourcepub fn resource_mut<R: Resource<Mutability = Mutable>>(&mut self) -> Mut<'_, R>
pub fn resource_mut<R: Resource<Mutability = Mutable>>(&mut self) -> Mut<'_, R>
Retrieves a mutable reference to the given resource R.
Sourcepub fn resource_entity<R: Resource>(&self) -> Option<Entity>
pub fn resource_entity<R: Resource>(&self) -> Option<Entity>
Retrieves the entity associated with the given resource R, if it exists.
Auto Trait Implementations§
impl<'a, 'w> Freeze for TemplateContext<'a, 'w>
impl<'a, 'w> !RefUnwindSafe for TemplateContext<'a, 'w>
impl<'a, 'w> Send for TemplateContext<'a, 'w>
impl<'a, 'w> Sync for TemplateContext<'a, 'w>
impl<'a, 'w> Unpin for TemplateContext<'a, 'w>
impl<'a, 'w> UnsafeUnpin for TemplateContext<'a, 'w>
impl<'a, 'w> !UnwindSafe for TemplateContext<'a, 'w>
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<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
Source§impl<T> IntoResult<T> for T
impl<T> IntoResult<T> for T
Source§fn into_result(self) -> Result<T, RunSystemError>
fn into_result(self) -> Result<T, RunSystemError>
Converts this type into the system output type.