fuel_vm::interpreter::diff

Trait VmStateCapture

Source
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.

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.

Implementors§