pub trait Dependencies { // Required method fn debug(&self) -> Vec<&dyn DynLayer>; }
A struct that defines the dependencies of your Chunk. Usually generated for structs via the deps macro, but you can manually define it in case you have non-Layer dependencies.
If you layer has no dependencies, you can use the () type instead.
()
For runtime debugging of your layers, you should return references to each of the layer types within your dependencies.