pub struct ByteCode {
pub objects: Pin<Box<VMObjects>>,
pub packages: Vec<PackageKey>,
pub ifaces: Vec<(GosMetadata, Option<Rc<Vec<FunctionKey>>>)>,
pub entry: FunctionKey,
}
Fields§
§objects: Pin<Box<VMObjects>>
§packages: Vec<PackageKey>
§ifaces: Vec<(GosMetadata, Option<Rc<Vec<FunctionKey>>>)>
§entry: FunctionKey
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ByteCode
impl !RefUnwindSafe for ByteCode
impl !Send for ByteCode
impl !Sync for ByteCode
impl Unpin for ByteCode
impl !UnwindSafe for ByteCode
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