Type Definition planck_ecs::SystemResult[][src]

type SystemResult = Result<(), EcsError>;
Expand description

The result of a System’s execution. Returns Ok(()) on success, EcsError on failure. To return a custom error from a system, use the system_error! macro.