Trait pegasus::Init [] [src]

pub trait Init: 'static {
    type Shell: 'static + Send;
    fn start(self, _: &mut Planner) -> Self::Shell;

    fn proceed(_: &mut Self::Shell, _: &World) -> bool { ... }
}

Associated Types

Required Methods

Provided Methods

Implementors