pub trait WithContext<T> {
// Required method
fn with_context(self, ctx: &(impl ContextSource + ?Sized)) -> GeopResult<T>;
}Required Methods§
fn with_context(self, ctx: &(impl ContextSource + ?Sized)) -> GeopResult<T>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".