pub trait IntoCachedFileResolver {
// Required method
fn into_cached(self) -> CachedFileResolver<Self>
where Self: Sized;
}Expand description
Trait for converting a file resolver into a cached version.
Required Methods§
Sourcefn into_cached(self) -> CachedFileResolver<Self>where
Self: Sized,
fn into_cached(self) -> CachedFileResolver<Self>where
Self: Sized,
Wraps this resolver with caching.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".