Struct bevy::ecs::query::Access[]

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

Implementations

impl<T> Access<T> where
    T: SparseSetIndex

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

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

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

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

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

pub fn read_all(&mut self)

pub fn reads_all(&self) -> bool

pub fn clear(&mut self)

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

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

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

Notable traits for Vec<u8, A>

impl<A> Write for Vec<u8, A> where
    A: Allocator

Trait Implementations

impl<T> Clone for Access<T> where
    T: Clone + SparseSetIndex

impl<T> Debug for Access<T> where
    T: Debug + SparseSetIndex

impl<T> Default for Access<T> where
    T: SparseSetIndex

impl<T> Eq for Access<T> where
    T: Eq + SparseSetIndex

impl<T> PartialEq<Access<T>> for Access<T> where
    T: PartialEq<T> + SparseSetIndex

impl<T> StructuralEq for Access<T> where
    T: SparseSetIndex

impl<T> StructuralPartialEq for Access<T> where
    T: SparseSetIndex

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> 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> DynEq for T where
    T: Any + Eq

impl<Q, K> Equivalent<K> for Q where
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized
[src]

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

impl<T> FromWorld for T where
    T: Default

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>,