pub trait AbstractDomain: Sized {
// Required methods
fn join(&self, other: &Self) -> Self;
fn meet(&self, other: &Self) -> Self;
fn is_bottom(&self) -> bool;
fn is_top(&self) -> bool;
fn leq(&self, other: &Self) -> bool;
}Expand description
A lattice-based abstract domain for static analysis.
Required Methods§
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.