diff options
author | Garrett Berg <vitiral@gmail.com> | 2017-07-26 22:08:22 -0600 |
---|---|---|
committer | Garrett Berg <vitiral@gmail.com> | 2017-07-27 07:03:52 -0600 |
commit | 219de2dd4d60420f810cb60496d41f164e5c06b0 (patch) | |
tree | 7bb58a9c5a5965403f3741f8fdee4cfc0ebd956b /src | |
parent | 71ac3e25f63edac92b4f6cc4ea709491390796ff (diff) | |
download | milf-rs-219de2dd4d60420f810cb60496d41f164e5c06b0.tar.gz milf-rs-219de2dd4d60420f810cb60496d41f164e5c06b0.zip |
close #199: add header information for empty structs
- also add test which fails without this change
- also add a few helpful unit tests to table
Diffstat (limited to 'src')
-rw-r--r-- | src/ser.rs | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -930,6 +930,15 @@ impl<'a, 'b> ser::SerializeStruct for SerializeTable<'a, 'b> { } fn end(self) -> Result<(), Error> { + match self { + SerializeTable::Datetime(_) => {}, + SerializeTable::Table { mut ser, first, .. } => { + if first.get() { + let state = ser.state.clone(); + ser.emit_table_header(&state)?; + } + } + } Ok(()) } } |