Trait FutureInterpreterAction

Source
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§

Source

fn run( self, state: &mut S, retbuf: &mut Vec<u8>, handle: &mut H, ) -> Capture<Self::Feedback, Self::Trap>

Implementors§