Struct rustc_mir_dataflow::framework::GenKillSet
source · 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§
source§impl<T: Clone> Clone for GenKillSet<T>
impl<T: Clone> Clone for GenKillSet<T>
source§fn clone(&self) -> GenKillSet<T>
fn clone(&self) -> GenKillSet<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: Idx> GenKill<T> for GenKillSet<T>
impl<T: Idx> GenKill<T> for GenKillSet<T>
source§fn gen_all(&mut self, elems: impl IntoIterator<Item = T>)
fn gen_all(&mut self, elems: impl IntoIterator<Item = T>)
Calls
gen
for each element in elems
.source§fn kill_all(&mut self, elems: impl IntoIterator<Item = T>)
fn kill_all(&mut self, elems: impl IntoIterator<Item = T>)
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
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.