pub struct CellBytecode {
pub const_pool: Vec<Vec<u8>>,
pub code: Vec<u8>,
}Expand description
A decoded cell ready for execution.
Fields§
§const_pool: Vec<Vec<u8>>Constant pool: arbitrary byte blobs referenced by index.
code: Vec<u8>Raw encoded instruction stream.
Implementations§
Source§impl CellBytecode
impl CellBytecode
Auto Trait Implementations§
impl Freeze for CellBytecode
impl RefUnwindSafe for CellBytecode
impl Send for CellBytecode
impl Sync for CellBytecode
impl Unpin for CellBytecode
impl UnsafeUnpin for CellBytecode
impl UnwindSafe for CellBytecode
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