pub trait FilterDb {
// Required method
fn contains_md5(&self, md5: &str) -> bool;
}Expand description
A known-good hash database for filtering.
Required Methods§
Sourcefn contains_md5(&self, md5: &str) -> bool
fn contains_md5(&self, md5: &str) -> bool
Check if an MD5 hash exists in this database.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".