Struct rinecs::operators::SendSto[][src]

pub struct SendSto<'r, S>(_, _);

Implementations

impl<'a, 'r, S> SendSto<'a, S> where
    S: StorageRef<'r> + ReadOnlyStorage
[src]

pub fn get(&'r self, entity: &Entity) -> Option<S::Component>[src]

impl<'a, 'r, S> SendSto<'a, S> where
    S: StorageRef<'r>, 
[src]

pub fn get_mut(&'r mut self, entity: &Entity) -> Option<S::Component>[src]

impl<'a, 'r, S> SendSto<'a, S> where
    S: OptionStorage<'r> + StorageRef<'r> + IntoSendStorage<'r>,
    S::SendStorage: ReadOnlyStorage
[src]

pub fn iter(&'r self) -> S::Iter[src]

pub fn iter_for_entities<E>(&'r self, entities_iter: E) -> E::IntoEntitiesIter where
    E: IntoEntitiesIterator<'r, S::SendStorage>, 
[src]

pub fn iter_for_entities_opt<E>(
    &'r self,
    entities_iter: E
) -> E::IntoEntitiesOptIter where
    E: IntoEntitiesIterator<'r, S::SendStorage>, 
[src]

impl<'a, 'r, S> SendSto<'a, S> where
    S: OptionStorageMut<'r> + StorageRef<'r> + IntoSendStorage<'r>, 
[src]

pub fn iter_mut(&'r mut self) -> S::IterMut[src]

pub fn iter_for_entities_mut<E>(
    &'r mut self,
    entities_iter: E
) -> E::IntoEntitiesIterMut where
    E: IntoEntitiesIterator<'r, S::SendStorage>, 
[src]

pub fn iter_for_entities_opt_mut<E>(
    &'r mut self,
    entities_iter: E
) -> E::IntoEntitiesOptIterMut where
    E: IntoEntitiesIterator<'r, S::SendStorage>, 
[src]

impl<'a, 'r, S> SendSto<'a, S> where
    S: ParOptionStorage<'r> + StorageRef<'r> + IntoSendStorage<'r>,
    S::SendStorage: ReadOnlyStorage
[src]

pub fn par_iter(&'r self) -> S::ParIter[src]

pub fn par_iter_for_entities<E>(
    &'r self,
    entities_iter: E
) -> E::IntoEntitiesParIter where
    E: IntoEntitiesParIterator<'r, S::SendStorage>, 
[src]

pub fn par_iter_for_entities_opt<E>(
    &'r self,
    entities_iter: E
) -> E::IntoEntitiesOptParIter where
    E: IntoEntitiesParIterator<'r, S::SendStorage>, 
[src]

impl<'a, 'r, S> SendSto<'a, S> where
    S: ParOptionStorageMut<'r> + StorageRef<'r> + IntoSendStorage<'r>, 
[src]

pub fn par_iter_mut(&'r mut self) -> S::ParIterMut[src]

pub fn par_iter_for_entities_mut<E>(
    &'r mut self,
    entities_iter: E
) -> E::IntoEntitiesParIterMut where
    E: IntoEntitiesParIterator<'r, S::SendStorage>, 
[src]

pub fn par_iter_for_entities_opt_mut<E>(
    &'r mut self,
    entities_iter: E
) -> E::IntoEntitiesOptParIterMut where
    E: IntoEntitiesParIterator<'r, S::SendStorage>, 
[src]

Auto Trait Implementations

impl<'r, S> !RefUnwindSafe for SendSto<'r, S>

impl<'r, S> Send for SendSto<'r, S> where
    S: Send

impl<'r, S> Sync for SendSto<'r, S> where
    S: Sync

impl<'r, S> Unpin for SendSto<'r, S> where
    S: Unpin

impl<'r, S> !UnwindSafe for SendSto<'r, S>

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.