Home
last modified time | relevance | path

Searched refs:CMemoryType (Results 1 – 2 of 2) sorted by relevance

/wasmtime-44.0.1/crates/c-api/src/types/
H A Dmemory.rs15 pub(crate) struct CMemoryType { struct
34 pub(crate) fn ty(&self) -> &CMemoryType { in ty() argument
42 impl CMemoryType { impl
43 pub(crate) fn new(ty: MemoryType) -> CMemoryType { in new() argument
44 CMemoryType { in new()
H A Dextern.rs1 use crate::{CFuncType, CGlobalType, CMemoryType, CTableType, CTagType};
17 Memory(CMemoryType),
27 ExternType::Memory(f) => CExternType::Memory(CMemoryType::new(f)), in new()