Struct toml_edit::ArrayOfTables[][src]

pub struct ArrayOfTables { /* fields omitted */ }

Type representing a TOML array of tables

Methods

impl ArrayOfTables
[src]

Creates an empty array of tables.

Returns an iterator over tables.

Returns an optional reference to the table.

Returns an optional mutable reference to the table.

Appends a table to the array.

Removes a table with the given index.

Removes all the tables.

Returns the length of the underlying Vec. To get the actual number of items use a.iter().count().

Returns true iff self.len() == 0.

Trait Implementations

impl Clone for ArrayOfTables
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ArrayOfTables
[src]

Formats the value using the given formatter. Read more

impl Default for ArrayOfTables
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations