pub trait StaticFileProviderFactory {
// Required method
fn static_file_provider(&self) -> StaticFileProvider;
}
Expand description
Static file provider factory.
Required Methods§
Sourcefn static_file_provider(&self) -> StaticFileProvider
fn static_file_provider(&self) -> StaticFileProvider
Create new instance of static file provider.
Implementors§
impl StaticFileProviderFactory for NoopProvider
Available on crate feature
test-utils
only.