Struct rin::ecs::operators::combined_unordered::StorageRef3[][src]

pub struct StorageRef3<'a, S1, S2, S3> { /* fields omitted */ }

Trait Implementations

impl<'a, S1, S2, S3> FastIndexExt for StorageRef3<'a, S1, S2, S3> where
    S2: FastIndexExt,
    S3: FastIndexExt,
    S1: FastIndexExt
[src]

type FastIndex = (<S1 as FastIndexExt>::FastIndex, <S2 as FastIndexExt>::FastIndex, <S3 as FastIndexExt>::FastIndex)

type StaticTypeId = (<S1 as FastIndexExt>::StaticTypeId, <S2 as FastIndexExt>::StaticTypeId, <S3 as FastIndexExt>::StaticTypeId)

impl<'a, 'r, S1, S2, S3> IntoSendStorage<'r> for StorageRef3<'a, S1, S2, S3> where
    S2: IntoSendStorage<'r>,
    S3: IntoSendStorage<'r>,
    S1: IntoSendStorage<'r>, 
[src]

type SendStorage = StorageRef3<'a, <S1 as IntoSendStorage<'r>>::SendStorage, <S2 as IntoSendStorage<'r>>::SendStorage, <S3 as IntoSendStorage<'r>>::SendStorage>

impl<'a, 'b, S1, S2, S3> OptionStorage<'b> for StorageRef3<'a, S1, S2, S3> where
    S2: StorageRef<'b> + IntoSendStorage<'b> + ReadOnlyStorage,
    S3: StorageRef<'b> + IntoSendStorage<'b> + ReadOnlyStorage,
    S1: StorageRef<'b> + IntoSendStorage<'b> + ReadOnlyStorage,
    <S1 as IntoSendStorage<'b>>::SendStorage: ReadOnlyStorage,
    <S2 as IntoSendStorage<'b>>::SendStorage: ReadOnlyStorage,
    <S3 as IntoSendStorage<'b>>::SendStorage: ReadOnlyStorage
[src]

type Iter = StorageIter<'b, StorageRef3<'b, <S1 as IntoSendStorage<'b>>::SendStorage, <S2 as IntoSendStorage<'b>>::SendStorage, <S3 as IntoSendStorage<'b>>::SendStorage>>

impl<'a, 'b, S1, S2, S3> OptionStorageMut<'b> for StorageRef3<'a, S1, S2, S3> where
    S2: StorageRef<'b> + IntoSendStorage<'b>,
    S3: StorageRef<'b> + IntoSendStorage<'b>,
    S1: StorageRef<'b> + IntoSendStorage<'b>, 
[src]

type IterMut = StorageIterMut<'b, StorageRef3<'b, <S1 as IntoSendStorage<'b>>::SendStorage, <S2 as IntoSendStorage<'b>>::SendStorage, <S3 as IntoSendStorage<'b>>::SendStorage>, <StorageRef3<'b, <S1 as IntoSendStorage<'b>>::SendStorage, <S2 as IntoSendStorage<'b>>::SendStorage, <S3 as IntoSendStorage<'b>>::SendStorage> as StorageRef<'b>>::Component>

impl<'a, 'r, S1, S2, S3> ParOptionStorage<'r> for StorageRef3<'a, S1, S2, S3> where
    S2: StorageRef<'r> + 'r + IntoSendStorage<'r>,
    S3: StorageRef<'r> + 'r + IntoSendStorage<'r>,
    S1: StorageRef<'r> + 'r + IntoSendStorage<'r>,
    <S1 as IntoSendStorage<'r>>::SendStorage: ReadOnlyStorage,
    <S2 as IntoSendStorage<'r>>::SendStorage: ReadOnlyStorage,
    <S3 as IntoSendStorage<'r>>::SendStorage: ReadOnlyStorage
[src]

type ParIter = ParStorageIter<'r, <StorageRef3<'a, S1, S2, S3> as IntoSendStorage<'r>>::SendStorage>

impl<'a, 'r, S1, S2, S3> ParOptionStorageMut<'r> for StorageRef3<'a, S1, S2, S3> where
    S2: StorageRef<'r> + 'r + IntoSendStorage<'r>,
    S3: StorageRef<'r> + 'r + IntoSendStorage<'r>,
    S1: StorageRef<'r> + 'r + IntoSendStorage<'r>, 
[src]

type ParIterMut = ParStorageIter<'r, <StorageRef3<'a, S1, S2, S3> as IntoSendStorage<'r>>::SendStorage>

impl<'a, 'r, S1, S2, S3> StorageRef<'r> for StorageRef3<'a, S1, S2, S3> where
    S2: StorageRef<'r>,
    S3: StorageRef<'r>,
    S1: StorageRef<'r>, 
[src]

type Data = (<S1 as StorageRef<'r>>::Data, <S2 as StorageRef<'r>>::Data, <S3 as StorageRef<'r>>::Data)

type Component = (<S1 as StorageRef<'r>>::Component, <S2 as StorageRef<'r>>::Component, <S3 as StorageRef<'r>>::Component)

impl<'a, S1, S2, S3> ReadOnlyStorage for StorageRef3<'a, S1, S2, S3> where
    S2: ReadOnlyStorage,
    S3: ReadOnlyStorage,
    S1: ReadOnlyStorage
[src]

Auto Trait Implementations

impl<'a, S1, S2, S3> !RefUnwindSafe for StorageRef3<'a, S1, S2, S3>

impl<'a, S1, S2, S3> Send for StorageRef3<'a, S1, S2, S3> where
    S1: Send,
    S2: Send,
    S3: Send

impl<'a, S1, S2, S3> Sync for StorageRef3<'a, S1, S2, S3> where
    S1: Sync,
    S2: Sync,
    S3: Sync

impl<'a, S1, S2, S3> Unpin for StorageRef3<'a, S1, S2, S3> where
    S1: Unpin,
    S2: Unpin,
    S3: Unpin

impl<'a, S1, S2, S3> !UnwindSafe for StorageRef3<'a, S1, S2, S3>

Blanket Implementations

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

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

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

impl<V> IntoPnt<V> for V[src]

impl<V> IntoVec<V> for V[src]

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

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

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]