pub trait VerifierLogger {
    // Required method
    fn log(&mut self, line: &[u8]);
}
Expand description

A trait to receive the log from the verifier.

Required Methods§

source

fn log(&mut self, line: &[u8])

Log a line. The line is always a correct encoded ASCII string.

Implementors§