pub struct FunctionIr {
pub name: String,
pub blocks: Vec<BasicBlockIr>,
pub raw: String,
}Expand description
Lightweight parsed representation of a function’s IR.
Fields§
§name: String§blocks: Vec<BasicBlockIr>§raw: StringTrait Implementations§
Source§impl Clone for FunctionIr
impl Clone for FunctionIr
Source§fn clone(&self) -> FunctionIr
fn clone(&self) -> FunctionIr
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FunctionIr
impl RefUnwindSafe for FunctionIr
impl Send for FunctionIr
impl Sync for FunctionIr
impl Unpin for FunctionIr
impl UnsafeUnpin for FunctionIr
impl UnwindSafe for FunctionIr
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