pub trait TomlValueReadExt<'doc> {
// Required methods
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>>;
// Provided methods
fn read(&'doc self, query: &str) -> Result<Option<&'doc Value>> { ... }
fn read_mut(&'doc mut self, query: &str) -> Result<Option<&'doc mut Value>> { ... }
}Expand description
The Toml Read extensions