Lines Matching refs:Table
9 pub use table::Table;
29 Table(Table), enumerator
67 pub fn into_table(self) -> Option<Table> { in into_table() argument
69 Extern::Table(table) => Some(table), in into_table()
122 Extern::Table(tt) => ExternType::Table(tt.ty(store)), in ty()
139 crate::runtime::vm::Export::Table(t) => Extern::Table(t), in from_wasmtime_export()
150 Extern::Table(t) => t.comes_from_same_store(store), in comes_from_same_store()
180 impl From<Table> for Extern {
181 fn from(r: Table) -> Self { in from()
182 Extern::Table(r) in from()
242 pub fn into_table(self) -> Option<Table> { in into_table() argument