Struct rustc_mir_dataflow::framework::GenKillSet [−][src]
pub struct GenKillSet<T> {
gen: HybridBitSet<T>,
kill: HybridBitSet<T>,
}
Expand description
Stores a transfer function for a gen/kill problem.
Calling gen
/kill
on a GenKillSet
will “build up” a transfer function so that it can be
applied multiple times efficiently. When there are multiple calls to gen
and/or kill
for
the same element, the most recent one takes precedence.
Fields
gen: HybridBitSet<T>
kill: HybridBitSet<T>
Implementations
Trait Implementations
Calls gen
for each element in elems
.
Calls kill
for each element in elems
.
Auto Trait Implementations
impl<T> RefUnwindSafe for GenKillSet<T> where
T: RefUnwindSafe,
impl<T> Send for GenKillSet<T> where
T: Send,
impl<T> Sync for GenKillSet<T> where
T: Sync,
impl<T> Unpin for GenKillSet<T> where
T: Unpin,
impl<T> UnwindSafe for GenKillSet<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.