Struct toml_edit::ArrayOfTables [] [src]

pub struct ArrayOfTables { /* fields omitted */ }

Type representing a TOML array of tables

Methods

impl ArrayOfTables
[src]

[src]

Creates an empty array of tables.

[src]

Returns an iterator over tables.

[src]

Returns an optional reference to the table.

[src]

Returns an optional mutable reference to the table.

[src]

Appends a table to the array.

[src]

Removes a table with the given index.

[src]

Removes all the tables.

[src]

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

[src]

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

Trait Implementations

impl Clone for ArrayOfTables
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ArrayOfTables
[src]

[src]

Formats the value using the given formatter.

impl Default for ArrayOfTables
[src]

[src]

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