pub trait VanityMatcher: Send + Sync {
// Required method
fn is_match(&self, addr: &Address) -> bool;
}Expand description
A trait to match vanity addresses.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".