pub trait VmStateCapture {
    type State<S: Debug + Clone>: Debug + Clone;
}
Expand description

A mapping between the kind of state that is being capture and the concrete data that is collected.

Required Associated Types§

The actual type is defined by the implementations of the Capture trait.

Implementors§