[]Struct acute_ecs::filter::ChunkFilterData

pub struct ChunkFilterData<'a> {
    pub chunks: &'a [ComponentStorage],
}

Input data for chunk filters.

Fields

chunks: &'a [ComponentStorage]

Trait Implementations

impl<'a> Clone for ChunkFilterData<'a>

impl<'a> Copy for ChunkFilterData<'a>

impl<'a> Filter<ChunkFilterData<'a>> for Passthrough

type Iter = Take<Repeat<()>>

impl<'a> Filter<ChunkFilterData<'a>> for Any

type Iter = Take<Repeat<()>>

impl<'a, T> Filter<ChunkFilterData<'a>> for ComponentChangedFilter<T> where
    T: Component

type Iter = ComponentChangedState<'a, ComponentStorage>

Auto Trait Implementations

impl<'a> !RefUnwindSafe for ChunkFilterData<'a>

impl<'a> Send for ChunkFilterData<'a>

impl<'a> Sync for ChunkFilterData<'a>

impl<'a> Unpin for ChunkFilterData<'a>

impl<'a> !UnwindSafe for ChunkFilterData<'a>

Blanket Implementations

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

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, U> Into<U> for T where
    U: From<T>, 
[src]

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

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.