implement From<toml::value::Table> for toml::Value

This commit is contained in:
Constantin Nickel 2019-04-08 23:50:26 +02:00
parent b9fbd5b6f7
commit a622bd414c

View file

@ -310,6 +310,7 @@ impl_into_value!(Float: f64);
impl_into_value!(Float: f32);
impl_into_value!(Boolean: bool);
impl_into_value!(Datetime: Datetime);
impl_into_value!(Table: Table);
/// Types that can be used to index a `toml::Value`
///