pub struct IrBlock {
pub id: IrBlockId,
pub instructions: Vec<IrInstruction>,
pub terminator: IrTerminator,
}Expand description
One basic block.
Fields§
§id: IrBlockIdBlock id.
instructions: Vec<IrInstruction>Non-terminator instructions.
terminator: IrTerminatorBlock terminator.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IrBlock
impl<'de> Deserialize<'de> for IrBlock
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for IrBlock
Auto Trait Implementations§
impl Freeze for IrBlock
impl RefUnwindSafe for IrBlock
impl Send for IrBlock
impl Sync for IrBlock
impl Unpin for IrBlock
impl UnsafeUnpin for IrBlock
impl UnwindSafe for IrBlock
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