Merge pull request #301 from nickelc/from_table
implement From<toml::value::Table> for toml::Value
This commit is contained in:
commit
d37f25714d
|
@ -310,6 +310,7 @@ impl_into_value!(Float: f64);
|
||||||
impl_into_value!(Float: f32);
|
impl_into_value!(Float: f32);
|
||||||
impl_into_value!(Boolean: bool);
|
impl_into_value!(Boolean: bool);
|
||||||
impl_into_value!(Datetime: Datetime);
|
impl_into_value!(Datetime: Datetime);
|
||||||
|
impl_into_value!(Table: Table);
|
||||||
|
|
||||||
/// Types that can be used to index a `toml::Value`
|
/// Types that can be used to index a `toml::Value`
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in a new issue