Skip to main content

Lattice

Trait Lattice 

Source
pub trait Lattice:
    Sized
    + Merge<Self>
    + LatticeOrd
    + NaiveLatticeOrd
    + IsBot
    + IsTop
    + Sealed { }
Expand description

Alias trait for lattice types.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> Lattice for T
where T: Sized + Merge<Self> + LatticeOrd + NaiveLatticeOrd + IsBot + IsTop,