pub trait Caller<T>: Store<T> {
// Required methods
fn program_counter(&self) -> u32;
fn stack_push(&mut self, value: UntypedValue);
}Required Methods§
fn program_counter(&self) -> u32
fn stack_push(&mut self, value: UntypedValue)
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.