Struct bevy::prelude::ReflectComponent[]

pub struct ReflectComponent { /* fields omitted */ }

Implementations

impl ReflectComponent

pub fn add_component(
    &self,
    world: &mut World,
    entity: Entity,
    component: &(dyn Reflect + 'static)
)

pub fn apply_component(
    &self,
    world: &mut World,
    entity: Entity,
    component: &(dyn Reflect + 'static)
)

pub fn reflect_component(
    &self,
    world: &'a World,
    entity: Entity
) -> Option<&'a (dyn Reflect + 'static)>

pub fn reflect_component_mut(
    &self,
    world: &'a mut World,
    entity: Entity
) -> Option<ReflectMut<'a>>

pub unsafe fn reflect_component_unchecked_mut(
    &self,
    world: &'a World,
    entity: Entity
) -> Option<ReflectMut<'a>>

Safety

This method does not prevent you from having two mutable pointers to the same data, violating Rust’s aliasing rules. To avoid this:

  • Only call this method in an exclusive system to avoid sharing across threads (or use a scheduler that enforces safe memory access).
  • Don’t call this method more than once in the same scope for a given component.

pub fn copy_component(
    &self,
    source_world: &World,
    destination_world: &mut World,
    source_entity: Entity,
    destination_entity: Entity
)

Trait Implementations

impl Clone for ReflectComponent

impl<C> FromType<C> for ReflectComponent where
    C: Component + Reflect + FromWorld

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneAny for T where
    T: Any + Clone

impl<T> Component for T where
    T: 'static + Send + Sync

impl<T> Downcast for T where
    T: Any

impl<T> Downcast<T> for T

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> TypeData for T where
    T: 'static + Send + Sync + Clone

impl<T> Upcast<T> for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,