pub trait EmbedFilesystemProvider: Send + Sync {
// Required method
fn get(&self, path: &str) -> Option<EmbeddedFile>;
}Expand description
Trait for providing access to embedded files.
This trait exists because rust-embed types are not dyn-compatible,
so we need this abstraction layer to allow dynamic dispatch over
different embedded file collections.