(&self)
| 419 | impl Args { |
| 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>> { |
no test coverage detected