Struct rinecs::operators::ReadNot[][src]

pub struct ReadNot<'a, T: Component, Not: 'static> where
    <T as Component>::Storage: Storage<'s, T>, 
{ /* fields omitted */ }

Operator that matches every entity that has the first component and not the second

It’s equivalent to Read + Not but more convenient cause it doesn’t return an extra empty component

for pos in entities.iter_for::<ReadNot<Position, Velocity>>(){
    //...
}

Will select all entities that have Position but no Velocity

Trait Implementations

impl<'a, T: ComponentSend, Not: 'static> ChangedData<'a> for ReadNot<'a, T, Not> where
    <T as Component>::Storage: Storage<'s, T>,
    ReadGuardRef<'b, <T as Component>::Storage>: IntoIter,
    <T as Component>::Storage: ChangedStorageExt<'a>, 
[src]

type ChangedIter = ChangedIter<'a, ReadGuardRef<'a, <T as Component>::Storage>>

impl<'a, T: Component, Not: 'static> DataAccesses for ReadNot<'a, T, Not> where
    <T as Component>::Storage: Storage<'s, T>, 
[src]

impl<'a, T: Component, Not: 'static> Deref for ReadNot<'a, T, Not> where
    <<T as Component>::Storage as Storage<'a, T>>::Get: Borrow<<<T as Component>::Storage as Storage<'a, T>>::DerefTarget>,
    <T as Component>::Storage: Storage<'s, T>, 
[src]

type Target = <<T as Component>::Storage as Storage<'a, T>>::DerefTarget

The resulting type after dereferencing.

impl<'a, T: Component, Not: 'static> FromComponent<'a, <<T as Component>::Storage as Storage<'a, T>>::Get> for ReadNot<'a, T, Not> where
    <T as Component>::Storage: Storage<'s, T>, 
[src]

impl<'a, T: Component, Not: 'static> UnorderedData<'a> for ReadNot<'a, T, Not> where
    <T as Component>::Storage: Storage<'s, T>, 
[src]

type Iter = Iter<'a, T, Not, ReadGuardRef<'a, <T as Component>::Storage>, LazyIndexGuard<'a>>

type IterMut = Iter<'a, T, Not, ReadGuardRef<'a, <T as Component>::Storage>, LazyIndexGuard<'a>>

type Components = T

type ComponentsRef = <<T as Component>::Storage as Storage<'a, T>>::Get

type Storage = StorageReadNot<'a, T, ReadGuardRef<'a, <T as Component>::Storage>, Not, LazyIndexGuard<'a>>

impl<T: Component, Not> SafeIter<'_> for ReadNot<'_, T, Not> where
    <T as Component>::Storage: Storage<'s, T>, 
[src]

Auto Trait Implementations

impl<'a, T, Not> RefUnwindSafe for ReadNot<'a, T, Not> where
    Not: RefUnwindSafe,
    <<T as Component>::Storage as Storage<'a, T>>::Get: RefUnwindSafe

impl<'a, T, Not> Send for ReadNot<'a, T, Not> where
    Not: Sync,
    <<T as Component>::Storage as Storage<'a, T>>::Get: Send

impl<'a, T, Not> Sync for ReadNot<'a, T, Not> where
    Not: Sync,
    <<T as Component>::Storage as Storage<'a, T>>::Get: Sync

impl<'a, T, Not> Unpin for ReadNot<'a, T, Not> where
    <<T as Component>::Storage as Storage<'a, T>>::Get: Unpin

impl<'a, T, Not> UnwindSafe for ReadNot<'a, T, Not> where
    Not: RefUnwindSafe,
    <<T as Component>::Storage as Storage<'a, T>>::Get: 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> From<T> for T[src]

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

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

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.