diff options
author | Constantin Nickel <constantin.nickel@gmail.com> | 2019-04-08 23:50:26 +0200 |
---|---|---|
committer | Constantin Nickel <constantin.nickel@gmail.com> | 2019-04-08 23:58:16 +0200 |
commit | 0cbd721e2cd86d9c0b5af81bd1b9c076971470e5 (patch) | |
tree | c80a69832cf84d2dc2c625a815d90546a849f248 /src | |
parent | 2011390ca8943c180f827d05433d6c8561282ce1 (diff) | |
download | milf-rs-0cbd721e2cd86d9c0b5af81bd1b9c076971470e5.tar.gz milf-rs-0cbd721e2cd86d9c0b5af81bd1b9c076971470e5.zip |
implement From<toml::value::Table> for toml::Value
Diffstat (limited to 'src')
-rw-r--r-- | src/value.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/value.rs b/src/value.rs index 07378cf..dd849e5 100644 --- a/src/value.rs +++ b/src/value.rs @@ -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` /// |