[−][src]Struct toml_edit::Document
Type representing a TOML document
Fields
root: Item
Root should always be Item::Table
.
Methods
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]
impl<'s> IndexMut<&'s str> for Document
[src]
Auto Trait Implementations
impl RefUnwindSafe for Document
impl Send for Document
impl Sync for Document
impl Unpin for Document
impl UnwindSafe for Document
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,