Struct rinecs::operators::Read[][src]

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

Operator that matches all entities that contain this component for read only access

for pos in entities.iter_for::<Read<Position>>(){
    //...
}

Will iterate over all position components

Trait Implementations

impl<'a, T: ComponentSend> ChangedData<'a> for Read<'a, T> 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> DataAccesses for Read<'a, T> where
    <T as Component>::Storage: Storage<'s, T>, 
[src]

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

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

The resulting type after dereferencing.

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

impl<'r, 'a, C> StorageEntitiesExt<'a, Read<'a, C>> for &'r CreationSto<'a, C> where
    C: Component,
    C::Storage: Storage<'s, C>, 
[src]

type Component = <C::Storage as Storage<'r, C>>::Get

type IntoStorage = StorageRead<'a, C, &'r C::Storage>

impl<'a, T: Component> UnorderedData<'a> for Read<'a, T> where
    ReadGuardRef<'a, <T as Component>::Storage>: IntoIter,
    <T as Component>::Storage: Storage<'s, T>, 
[src]

type Iter = IterOptionWrapper<<ReadGuardRef<'a, <T as Component>::Storage> as IntoIter>::Iter>

type IterMut = IterOptionWrapper<<ReadGuardRef<'a, <T as Component>::Storage> as IntoIter>::Iter>

type Components = T

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

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

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

Auto Trait Implementations

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

impl<'a, T> Send for Read<'a, T> where
    <<T as Component>::Storage as Storage<'a, T>>::Get: Send

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

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

impl<'a, T> UnwindSafe for Read<'a, T> where
    <<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.