pub trait LocateEntry: Locate {
// Provided method
fn locate_as_entry(
self: Pin<&Self>,
file_path: &str,
code: impl Into<Arc<str>>,
) -> Result<(), Box<dyn Error + Send + Sync>> { ... }
}Provided Methods§
fn locate_as_entry( self: Pin<&Self>, file_path: &str, code: impl Into<Arc<str>>, ) -> Result<(), Box<dyn Error + Send + Sync>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.