pub trait Assets: Send + Sync + 'static { // Required method fn get(&self, key: &AssetKey) -> Option<Cow<'_, [u8]>>; }
Represents a container of file assets that are retrievable during runtime.
Get the content of the passed AssetKey.
AssetKey