pub trait BoundedLattice: Lattice {
// Required methods
fn bottom() -> Self;
fn top() -> Self;
}
Required Methods§
Object Safety§
This trait is not object safe.
pub trait BoundedLattice: Lattice {
// Required methods
fn bottom() -> Self;
fn top() -> Self;
}