Closed
Description
What problem does this solve or what need does it fill?
Currently resources can have either FromWorld
or Default
trait implementation because of blanked FromWorld
implementation. This causes inconveniences with other crates integration. For example, confy crate requires configuration structure to have Default
trait, so I can't create a convenient FromWorld
for it.
What solution would you like?
I would suggest to switch to explicit derive macro.