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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.