1//! # The XML `<obj>` format (character data) 2//! 3//! This module contains reader and writer and datastructures for 4//! the character data as serialized to XML. 5#![allow(missing_docs)] 6pub mod sink; 7pub mod store;