(self)
| 65 | /// Returns `None` if this is not a table. |
| 66 | #[inline] |
| 67 | pub fn into_table(self) -> Option<Table> { |
| 68 | match self { |
| 69 | Extern::Table(table) => Some(table), |
| 70 | _ => None, |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | /// Returns the underlying `Memory`, if this external is a memory. |
| 75 | /// |
no outgoing calls
no test coverage detected