pub struct WasmTableType {
pub element_type: WasmReferenceType,
pub min: u32,
pub max: Option<u32>,
}Expand description
WASM 表类型
Fields§
§element_type: WasmReferenceType元素类型
min: u32最小大小
max: Option<u32>最大大小(可选)
Trait Implementations§
Source§impl Clone for WasmTableType
impl Clone for WasmTableType
Source§fn clone(&self) -> WasmTableType
fn clone(&self) -> WasmTableType
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 WasmTableType
impl Debug for WasmTableType
impl Copy for WasmTableType
Auto Trait Implementations§
impl Freeze for WasmTableType
impl RefUnwindSafe for WasmTableType
impl Send for WasmTableType
impl Sync for WasmTableType
impl Unpin for WasmTableType
impl UnsafeUnpin for WasmTableType
impl UnwindSafe for WasmTableType
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