pub struct Archive {
pub block_info: Option<Arc<BlockInfo>>,
pub files: HashMap<String, Box<[u8]>>,
pub code: Box<[u8]>,
pub conf: VMConfig,
}Fields§
§block_info: Option<Arc<BlockInfo>>§files: HashMap<String, Box<[u8]>>§code: Box<[u8]>§conf: VMConfigAuto Trait Implementations§
impl Freeze for Archive
impl RefUnwindSafe for Archive
impl Send for Archive
impl Sync for Archive
impl Unpin for Archive
impl UnwindSafe for Archive
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