[][src]Trait toml_query::read::TomlValueReadTypeExt

pub trait TomlValueReadTypeExt<'doc>: TomlValueReadExt<'doc> {
    fn read_string(&'doc self, query: &str) -> Result<Option<String>>;
fn read_int(&'doc self, query: &str) -> Result<Option<i64>>;
fn read_float(&'doc self, query: &str) -> Result<Option<f64>>;
fn read_bool(&'doc self, query: &str) -> Result<Option<bool>>; }

Required methods

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

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

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

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

Loading content...

Implementors

impl<'doc, T> TomlValueReadTypeExt<'doc> for T where
    T: TomlValueReadExt<'doc>, 
[src]

Loading content...