pub trait Load { type Output; // Required method fn load( &self, world: Tracked<'_, dyn World + '_>, ) -> Result<Self::Output, EcoVec<SourceDiagnostic>>; }
Loads data from a path or provided bytes.
Bytes or a list of bytes (if there are multiple sources).
Load the bytes.