1 2 3 4 5 6 7 8
use crate::records::json_emitter::JsonEmitter; #[derive(Debug, Clone)] pub struct ArrayEmitter { pub(crate) emitter: *mut JsonEmitter, pub(crate) comma: bool, pub(crate) finished: bool, }