Enum rustc_mir_dataflow::lattice::FlatSet [−][src]
pub enum FlatSet<T> {
Bottom,
Elem(T),
Top,
}Expand description
Extends a type T with top and bottom elements to make it a partially ordered set in which no
value of T is comparable with any other. A flat set has the following Hasse diagram:
top
/ / \ \
all possible values of `T`
\ \ / /
bottomVariants
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for FlatSet<T> where
T: RefUnwindSafe,
impl<T> UnwindSafe for FlatSet<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Layout
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.