Type Alias Iter

Source
pub type Iter<'a> = Box<dyn Iterator<Item = (&'a str, &'a Item)> + 'a>;
Expand description

An iterator type over Table’s Key/Item pairs

Aliased Type§

struct Iter<'a>(/* private fields */);