Trait aery::scope::AeryEntityWorldMutExt

source ·
pub trait AeryEntityWorldMutExt<'a> {
    // Required method
    fn scope<R: Relation>(
        &mut self,
        func: impl FnMut(&mut WorldScope<'_, R>),
    ) -> &mut Self;
}
Expand description

Ext trait to produce a WorldScope from an EntityWorldMut.

Required Methods§

source

fn scope<R: Relation>( &mut self, func: impl FnMut(&mut WorldScope<'_, R>), ) -> &mut Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a> AeryEntityWorldMutExt<'a> for EntityWorldMut<'a>

source§

fn scope<R: Relation>( &mut self, func: impl FnMut(&mut WorldScope<'_, R>), ) -> &mut Self

Implementors§