pub trait MemoryAccessMatcher<T>where
T: AccessMemory + Debug,{
// Required method
fn assert_matches(&self, step: &str, actual: &T);
}Required Methods§
fn assert_matches(&self, step: &str, actual: &T)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".