[][src]Struct toml_edit::Document

pub struct Document {
    pub root: Item,
    // some fields omitted
}

Type representing a TOML document

Fields

root: Item

Root should always be Item::Table.

Implementations

impl Document[src]

pub fn to_string_in_original_order(&self) -> String[src]

Returns a string representation of the TOML document, attempting to keep the table headers in their original order.

impl Document[src]

pub fn new() -> Self[src]

Creates an empty document

pub fn as_table(&self) -> &Table[src]

Returns a reference to the root table.

pub fn as_table_mut(&mut self) -> &mut Table[src]

Returns a mutable reference to the root table.

pub fn iter(&self) -> Iter[src]

Returns an iterator over the root table.

Trait Implementations

impl Clone for Document[src]

impl Debug for Document[src]

impl Default for Document[src]

impl Display for Document[src]

impl FromStr for Document[src]

type Err = TomlError

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Self, Self::Err>[src]

Parses a document from a &str

impl<'s> Index<&'s str> for Document[src]

type Output = Item

The returned type after indexing.

impl<'s> IndexMut<&'s str> for Document[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.