pub struct DataFlowGraph<SetType: Idx + From<usize>> {
pub in_sets: IndexVec<BasicBlockId, BitSet<SetType>>,
pub out_sets: IndexVec<BasicBlockId, BitSet<SetType>>,
}Fields§
§in_sets: IndexVec<BasicBlockId, BitSet<SetType>>§out_sets: IndexVec<BasicBlockId, BitSet<SetType>>Implementations§
Auto Trait Implementations§
impl<SetType> Freeze for Graph<SetType>
impl<SetType> RefUnwindSafe for Graph<SetType>
impl<SetType> Send for Graph<SetType>
impl<SetType> Sync for Graph<SetType>
impl<SetType> Unpin for Graph<SetType>
impl<SetType> UnwindSafe for Graph<SetType>
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