(&self)
| 1013 | /// Returns `Some(_)` if this `Ref` is a non-null `func` reference. |
| 1014 | #[inline] |
| 1015 | pub fn unwrap_func(&self) -> Option<&Func> { |
| 1016 | self.as_func() |
| 1017 | .expect("Ref::unwrap_func on non-func reference") |
| 1018 | } |
| 1019 | |
| 1020 | /// Get the type of this reference. |
| 1021 | /// |
no test coverage detected