You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
one thing I found surprising while working with toml_edit after using toml, is that Item doesn't implement From<{Value,Table,ArrayOfTables}>, in contrast with toml::Value which does have equivalent From implementations. this makes code that manually builds a document a little more verbose.
and maybe there are more things in toml_edit which could benefit from a From implementation, like toml_edit::Value or Formatted.
The text was updated successfully, but these errors were encountered:
one thing I found surprising while working with
toml_edit
after usingtoml
, is thatItem
doesn't implementFrom<{Value,Table,ArrayOfTables}>
, in contrast withtoml::Value
which does have equivalentFrom
implementations. this makes code that manually builds a document a little more verbose.and maybe there are more things in
toml_edit
which could benefit from aFrom
implementation, liketoml_edit::Value
orFormatted
.The text was updated successfully, but these errors were encountered: