toml_edit::inline_table

Type Alias InlineTableIter

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

An iterator type over key/value pairs of an inline table.

Aliased Typeยง

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