Trait zk_evm_abstractions::vm::EventSink

source ·
pub trait EventSink: Debug {
    // Required methods
    fn add_partial_query(
        &mut self,
        monotonic_cycle_counter: u32,
        query: LogQuery,
    );
    fn start_frame(&mut self, timestamp: Timestamp);
    fn finish_frame(&mut self, panicked: bool, timestamp: Timestamp);
}

Required Methods§

source

fn add_partial_query(&mut self, monotonic_cycle_counter: u32, query: LogQuery)

source

fn start_frame(&mut self, timestamp: Timestamp)

source

fn finish_frame(&mut self, panicked: bool, timestamp: Timestamp)

Implementors§