Skip to main content

FuzzStateReader

Trait FuzzStateReader 

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

Source

fn deployed_libs(&self) -> &[Address]

Source

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.

Implementors§