Trait FuzzStateReader
pub trait FuzzStateReader: Clone + 'static {
// Required methods
fn deployed_libs(&self) -> &[Address];
fn with_dictionary<R>(&self, f: impl FnOnce(&FuzzDictionary) -> R) -> R;
}Required Methods§
fn deployed_libs(&self) -> &[Address]
fn with_dictionary<R>(&self, f: impl FnOnce(&FuzzDictionary) -> R) -> R
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.