GasVisitorT

Trait GasVisitorT 

Source
pub trait GasVisitorT: ParsingVisitor {
    // Required methods
    fn take_block_cost(&mut self) -> Option<u32>;
    fn is_at_start_of_basic_block(&self) -> bool;
}

Required Methods§

Implementors§

Source§

impl<'a, B, T> GasVisitorT for Simulator<'a, B, T>
where B: BitnessT, T: Tracer,