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§

source

type State<S: Debug + Clone>: Debug + Clone

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

Implementors§