Struct wasm_encoder::DataSymbolDefinition
source · pub struct DataSymbolDefinition {
pub index: u32,
pub offset: u32,
pub size: u32,
}
Expand description
The definition of a data symbol within a symbol table.
Fields§
§index: u32
The index of the data segment that this symbol is in.
offset: u32
The offset of this symbol within its segment.
size: u32
The byte size (which can be zero) of this data symbol.
Note that offset + size
must be less than or equal to the segment’s
size.
Trait Implementations§
source§impl Clone for DataSymbolDefinition
impl Clone for DataSymbolDefinition
source§fn clone(&self) -> DataSymbolDefinition
fn clone(&self) -> DataSymbolDefinition
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for DataSymbolDefinition
impl RefUnwindSafe for DataSymbolDefinition
impl Send for DataSymbolDefinition
impl Sync for DataSymbolDefinition
impl Unpin for DataSymbolDefinition
impl UnwindSafe for DataSymbolDefinition
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)