pub trait FutureInterpreterAction<S, H> {
type Feedback;
type Trap;
// Required method
fn run(
self,
state: &mut S,
retbuf: &mut Vec<u8>,
handle: &mut H,
) -> Capture<Self::Feedback, Self::Trap>;
}Required Associated Types§
Required Methods§
fn run( self, state: &mut S, retbuf: &mut Vec<u8>, handle: &mut H, ) -> Capture<Self::Feedback, Self::Trap>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".