pub trait Recorder: Send + Sync {
    // Required methods
    fn enabled(&self) -> bool;
    fn record(&self, dump: Dump);
}
Expand description

Availability

This API is marked as unstable and is only available when the unstable crate feature is enabled. This comes with no stability guarantees, and could be changed or removed at any time.

Required Methods§

source

fn enabled(&self) -> bool

source

fn record(&self, dump: Dump)

Implementors§