pub struct ActiveDataSegment {
pub name: String,
pub position: usize,
pub data: Vec<u8>,
}
Expand description
Represents an active data segment to be included in the WASM module.
Fields§
§name: String
§position: usize
§data: Vec<u8>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ActiveDataSegment
impl RefUnwindSafe for ActiveDataSegment
impl Send for ActiveDataSegment
impl Sync for ActiveDataSegment
impl Unpin for ActiveDataSegment
impl UnwindSafe for ActiveDataSegment
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