Skip to main content

EntityGetter

Trait EntityGetter 

Source
pub trait EntityGetter: FnMut(&mut dyn CommandContext) -> Option<&mut dyn Reflect> + 'static { }

Implementors§

Source§

impl<F> EntityGetter for F
where F: 'static + FnMut(&mut dyn CommandContext) -> Option<&mut dyn Reflect>,