pub struct WasmSection {
pub id: u8,
pub name: String,
pub size: u64,
}Expand description
WASM section info.
Fields§
§id: u8Section ID
name: StringSection name
size: u64Section size in bytes
Trait Implementations§
Source§impl Clone for WasmSection
impl Clone for WasmSection
Source§fn clone(&self) -> WasmSection
fn clone(&self) -> WasmSection
Returns a duplicate 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 moreSource§impl Debug for WasmSection
impl Debug for WasmSection
Source§impl Default for WasmSection
impl Default for WasmSection
Source§fn default() -> WasmSection
fn default() -> WasmSection
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for WasmSection
impl RefUnwindSafe for WasmSection
impl Send for WasmSection
impl Sync for WasmSection
impl Unpin for WasmSection
impl UnwindSafe for WasmSection
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