pub struct Cfg {
pub entry: u32,
pub blocks: HashMap<u32, Block>,
}Expand description
Control-flow graph consumed by the SSA builder.
Fields§
§entry: u32Entry block id.
blocks: HashMap<u32, Block>Blocks keyed by stable block id.
Trait Implementations§
impl StructuralPartialEq for Cfg
Auto Trait Implementations§
impl Freeze for Cfg
impl RefUnwindSafe for Cfg
impl Send for Cfg
impl Sync for Cfg
impl Unpin for Cfg
impl UnsafeUnpin for Cfg
impl UnwindSafe for Cfg
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