#[repr(C)]pub struct M3CompilationScope {
pub outer: *mut M3CompilationScope,
pub pc: pc_t,
pub patches: IM3BranchPatch,
pub depth: i32_,
pub initStackIndex: i16_,
pub type_: u8_,
pub opcode: m3opcode_t,
pub isPolymorphic: bool,
}Fields§
§outer: *mut M3CompilationScope§pc: pc_t§patches: IM3BranchPatch§depth: i32_§initStackIndex: i16_§type_: u8_§opcode: m3opcode_t§isPolymorphic: boolTrait Implementations§
Source§impl Clone for M3CompilationScope
impl Clone for M3CompilationScope
Source§fn clone(&self) -> M3CompilationScope
fn clone(&self) -> M3CompilationScope
Returns a copy 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 moreimpl Copy for M3CompilationScope
Auto Trait Implementations§
impl Freeze for M3CompilationScope
impl RefUnwindSafe for M3CompilationScope
impl !Send for M3CompilationScope
impl !Sync for M3CompilationScope
impl Unpin for M3CompilationScope
impl UnwindSafe for M3CompilationScope
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