pub trait StaticManifest: Boxed<'static> {
// Required methods
fn static_key_output_pairs(&self) -> &[(&'static str, &'static str)];
fn static_chunks(
&self,
) -> &[(&'static str, &'static ManifestChunk<'static>)];
}Expand description
Required Methods§
Sourcefn static_key_output_pairs(&self) -> &[(&'static str, &'static str)]
fn static_key_output_pairs(&self) -> &[(&'static str, &'static str)]
Get array of (key, output_filename) pairs.
Array must be sorted by key
Sourcefn static_chunks(&self) -> &[(&'static str, &'static ManifestChunk<'static>)]
fn static_chunks(&self) -> &[(&'static str, &'static ManifestChunk<'static>)]
Get ManifestChunks as (output_filename, chunk) pairs.
Array must be sorted by output_filename
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".