pub trait CircuitInfo {
    fn print_info(&self) -> Result<(), DummyError>;
}
Expand description

Trait to display circuit evaluation costs

Blanket implementation available for all circuits that can be evaluated with an Informer

Required Methods

Print circuit info

Implementors