pub trait ActionsProxy {
// Required method
fn actions(&mut self, agent: Entity) -> impl ManageActions;
}Required Methods§
Sourcefn actions(&mut self, agent: Entity) -> impl ManageActions
fn actions(&mut self, agent: Entity) -> impl ManageActions
Returns a type for managing actions for specified agent.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.