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

Ext trait to produce a CommandScope from an EntityCommands.

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a> AeryEntityCommandsExt<'a> for EntityCommands<'a>

source§

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

Implementors§