Document a new public field

This commit is contained in:
Alex Crichton 2014-06-26 22:55:20 -07:00
parent c28df7cb52
commit 0f9410a7f0

View file

@ -48,6 +48,8 @@ pub struct Encoder {
/// `Decodable` types to be generated by this decoder. The input is any
/// arbitrary TOML value.
pub struct Decoder {
/// The TOML value left over after decoding. This can be used to inspect
/// whether fields were decoded or not.
pub toml: Option<Value>,
cur_field: Option<String>,
}