[][src]Trait toml_query::read::TomlValueReadExt

pub trait TomlValueReadExt<'doc> {
    fn read_with_seperator(
        &'doc self,
        query: &str,
        sep: char
    ) -> Result<Option<&'doc Value>>;
fn read_mut_with_seperator(
        &'doc mut self,
        query: &str,
        sep: char
    ) -> Result<Option<&'doc mut Value>>; fn read(&'doc self, query: &str) -> Result<Option<&'doc Value>> { ... }
fn read_mut(&'doc mut self, query: &str) -> Result<Option<&'doc mut Value>> { ... } }

Required methods

fn read_with_seperator(
    &'doc self,
    query: &str,
    sep: char
) -> Result<Option<&'doc Value>>

Extension function for reading a value from the current toml::Value document using a custom seperator

fn read_mut_with_seperator(
    &'doc mut self,
    query: &str,
    sep: char
) -> Result<Option<&'doc mut Value>>

Extension function for reading a value from the current toml::Value document mutably using a custom seperator

Loading content...

Provided methods

fn read(&'doc self, query: &str) -> Result<Option<&'doc Value>>

Extension function for reading a value from the current toml::Value document

fn read_mut(&'doc mut self, query: &str) -> Result<Option<&'doc mut Value>>

Extension function for reading a value from the current toml::Value document mutably

Loading content...

Implementations on Foreign Types

impl<'doc> TomlValueReadExt<'doc> for Value[src]

Loading content...

Implementors

Loading content...