1use crate::records::array_emitter::ArrayEmitter; 2 3impl Drop for ArrayEmitter { 4 fn drop(&mut self) { 5 self.finish(); 6 } 7}