pub struct Body {
pub types_section: Vec<TypeMetadata>,
pub inputs: u8,
pub outputs: u8,
pub max_stack_height: u16,
pub code_section: Vec<u8>,
pub container_section: Vec<u8>,
pub data_section: Vec<u8>,
}Fields§
§types_section: Vec<TypeMetadata>§inputs: u8§outputs: u8§max_stack_height: u16§code_section: Vec<u8>§container_section: Vec<u8>§data_section: Vec<u8>Trait Implementations§
impl StructuralPartialEq for Body
Auto Trait Implementations§
impl Freeze for Body
impl RefUnwindSafe for Body
impl Send for Body
impl Sync for Body
impl Unpin for Body
impl UnwindSafe for Body
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