pub trait BitSetExt<T> {
// Required method
fn contains(&self, elem: T) -> bool;
}Expand description
Analysis domains are all bitsets of various kinds. This trait holds operations needed by all of them.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".