pub struct ExprBlock {
pub id: usize,
pub start_pc: usize,
pub pred: Vec<usize>,
pub succ: Vec<usize>,
pub phi: Vec<Phi>,
pub stmts: Vec<Stmt>,
pub term: Terminator,
}Fields§
§id: usize§start_pc: usize§pred: Vec<usize>§succ: Vec<usize>§phi: Vec<Phi>§stmts: Vec<Stmt>§term: TerminatorTrait Implementations§
Auto Trait Implementations§
impl Freeze for ExprBlock
impl RefUnwindSafe for ExprBlock
impl Send for ExprBlock
impl Sync for ExprBlock
impl Unpin for ExprBlock
impl UnwindSafe for ExprBlock
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