(&self)
| 420 | #[allow(clippy::len_without_is_empty)] |
| 421 | pub fn len(&self) -> usize { self.0.len() } |
| 422 | pub fn is_empty(&self) -> bool { self.0.is_empty() } |
| 423 | /// Decode the i-th arg as `T`, `None` when out of range. |
| 424 | pub fn get<T: FromValue>(&self, i: usize) -> Option<Result<T>> { |
| 425 | self.0.get(i).map(|h| T::from_handle(h.raw())) |
no outgoing calls
no test coverage detected