pub trait AssetSource:
'static
+ Send
+ Sync {
// Required methods
fn load(&self, path: &str) -> Result<Option<Cow<'static, [u8]>>>;
fn list(&self, path: &str) -> Result<Vec<SharedString>>;
}Expand description
A source of assets for this app to use.