pub struct SsaProgram {
pub obj_index: usize,
pub blocks: Vec<SsaBlock>,
pub entry_block: usize,
}Fields§
§obj_index: usize§blocks: Vec<SsaBlock>§entry_block: usizeImplementations§
Trait Implementations§
Source§impl Clone for SsaProgram
impl Clone for SsaProgram
Source§fn clone(&self) -> SsaProgram
fn clone(&self) -> SsaProgram
Returns a duplicate of the value. Read more
1.0.0 · 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 SsaProgram
impl RefUnwindSafe for SsaProgram
impl Send for SsaProgram
impl Sync for SsaProgram
impl Unpin for SsaProgram
impl UnwindSafe for SsaProgram
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