pub struct WasiCustomSection {
pub name: String,
pub data: Vec<u8>,
}Expand description
WASM 自定义段
Fields§
§name: String段名称
data: Vec<u8>段数据
Trait Implementations§
Source§impl Clone for WasiCustomSection
impl Clone for WasiCustomSection
Source§fn clone(&self) -> WasiCustomSection
fn clone(&self) -> WasiCustomSection
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 moreAuto Trait Implementations§
impl Freeze for WasiCustomSection
impl RefUnwindSafe for WasiCustomSection
impl Send for WasiCustomSection
impl Sync for WasiCustomSection
impl Unpin for WasiCustomSection
impl UnsafeUnpin for WasiCustomSection
impl UnwindSafe for WasiCustomSection
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