pub struct GaiaBlock {
pub label: String,
pub instructions: Vec<GaiaInstruction>,
pub terminator: GaiaTerminator,
}Expand description
Gaia Basic Block.
Fields§
§label: String§instructions: Vec<GaiaInstruction>§terminator: GaiaTerminatorTrait Implementations§
Source§impl<'de> Deserialize<'de> for GaiaBlock
impl<'de> Deserialize<'de> for GaiaBlock
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 GaiaBlock
Auto Trait Implementations§
impl Freeze for GaiaBlock
impl RefUnwindSafe for GaiaBlock
impl Send for GaiaBlock
impl Sync for GaiaBlock
impl Unpin for GaiaBlock
impl UnsafeUnpin for GaiaBlock
impl UnwindSafe for GaiaBlock
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