[]Struct bevy::ecs::Archetype

pub struct Archetype { /* fields omitted */ }

A collection of entities having the same component types

Accessing Archetypes is only required for complex dynamic scheduling. To manipulate entities, go through the World.

Implementations

impl Archetype

pub fn new(types: Vec<TypeInfo, Global>) -> Archetype

pub fn with_grow(types: Vec<TypeInfo, Global>, grow_size: usize) -> Archetype

pub fn has<T>(&self) -> bool where
    T: Component

pub fn has_type(&self, ty: TypeId) -> bool

pub fn get<T>(&self) -> Option<NonNull<T>> where
    T: Component

pub fn get_with_type_state<T>(&self) -> Option<(NonNull<T>, &TypeState)> where
    T: Component

pub fn get_type_state(&self, ty: TypeId) -> Option<&TypeState>

pub fn get_type_state_mut(&mut self, ty: TypeId) -> Option<&mut TypeState>

pub fn borrow<T>(&self) where
    T: Component

pub fn borrow_mut<T>(&self) where
    T: Component

pub fn release<T>(&self) where
    T: Component

pub fn release_mut<T>(&self) where
    T: Component

pub fn len(&self) -> usize

pub fn is_empty(&self) -> bool

pub fn iter_entities(&self) -> impl Iterator<Item = &Entity>

pub fn types(&self) -> &[TypeInfo]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]

pub unsafe fn allocate(&mut self, id: Entity) -> usize

Safety

Every type must be written immediately after this call

pub fn clear_trackers(&mut self)

pub unsafe fn put_dynamic(
    &mut self,
    component: *mut u8,
    ty: TypeId,
    size: usize,
    index: usize,
    flags: ComponentFlags
)

Safety

  • component must point to valid memory
  • the component type must be registered
  • index must be in-bound
  • size must be the size of the component
  • the storage array must be big enough

Trait Implementations

impl Debug for Archetype

impl Drop for Archetype

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> Component for T where
    T: 'static + Send + Sync

impl<T> Downcast for T where
    T: Any

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

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> Resource for T where
    T: 'static + Send + Sync

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<V, T> VZip<V> for T where
    V: MultiLane<T>,