pub trait IPointer<C> {
// Required method
fn pointer_context(&self) -> C;
}Expand description
Identifies the evaluator context that owns pointer resolution.
Pointer descriptor fields are accessed through the ordinary collection protocols; they are deliberately not duplicated here.
Required Methods§
fn pointer_context(&self) -> C
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".