pub trait ReadFilter {
// Required method
fn filter_read(
&self,
read: &Record,
alignment: Option<&Alignment<'_>>,
) -> bool;
}Expand description
Anything that implements ReadFilter can apply a filter set to read.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".