Struct bevy_ecs::query::Access[][src]

pub struct Access<T: SparseSetIndex> { /* fields omitted */ }

Implementations

impl<T: SparseSetIndex> Access<T>[src]

pub fn grow(&mut self, bits: usize)[src]

pub fn add_read(&mut self, index: T)[src]

pub fn add_write(&mut self, index: T)[src]

pub fn has_read(&self, index: T) -> bool[src]

pub fn has_write(&self, index: T) -> bool[src]

pub fn read_all(&mut self)[src]

pub fn reads_all(&self) -> bool[src]

pub fn clear(&mut self)[src]

pub fn extend(&mut self, other: &Access<T>)[src]

pub fn is_compatible(&self, other: &Access<T>) -> bool[src]

pub fn get_conflicts(&self, other: &Access<T>) -> Vec<T>[src]

Trait Implementations

impl<T: Clone + SparseSetIndex> Clone for Access<T>[src]

impl<T: Debug + SparseSetIndex> Debug for Access<T>[src]

impl<T: SparseSetIndex> Default for Access<T>[src]

impl<T: Eq + SparseSetIndex> Eq for Access<T>[src]

impl<T: PartialEq + SparseSetIndex> PartialEq<Access<T>> for Access<T>[src]

impl<T: SparseSetIndex> StructuralEq for Access<T>[src]

impl<T: SparseSetIndex> StructuralPartialEq for Access<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Access<T> where
    T: RefUnwindSafe

impl<T> Send for Access<T> where
    T: Send

impl<T> Sync for Access<T> where
    T: Sync

impl<T> Unpin for Access<T> where
    T: Unpin

impl<T> UnwindSafe for Access<T> where
    T: UnwindSafe

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
[src]

impl<T> Downcast for T where
    T: Any
[src]

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

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

impl<T> FromWorld for T where
    T: Default
[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
[src]

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