pub struct VmSetup {
pub stack_memory_size: usize,
pub heap_memory_size: usize,
pub constant_memory: Vec<u8>,
pub debug_stats_enabled: bool,
pub debug_opcodes_enabled: bool,
pub debug_operations_enabled: bool,
}Fields§
§stack_memory_size: usize§heap_memory_size: usize§constant_memory: Vec<u8>§debug_stats_enabled: bool§debug_opcodes_enabled: bool§debug_operations_enabled: boolAuto Trait Implementations§
impl Freeze for VmSetup
impl RefUnwindSafe for VmSetup
impl Send for VmSetup
impl Sync for VmSetup
impl Unpin for VmSetup
impl UnwindSafe for VmSetup
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