[][src]Module async_ecs::world

Structs

DefaultSetupHandler
Lazy

Lazy updates can be used for world updates that need to borrow a lot of resources and as such should better be done at the end. They work lazily in the sense that they are dispatched when calling world.maintain().

MetaTable

The MetaTable which allows to store object-safe trait implementations for resources.

PanicHandler

A setup handler that simply does nothing and thus will cause a panic on fetching.

World

Traits

AnyStorage
CastFrom

Helper trait for the MetaTable. This trait is required to be implemented for a trait to be compatible with the meta table.

SetupHandler