#[derive(Debug, Clone)]
pub struct WriterOptions {
pub strict: bool,
pub hard_break_spaces: bool,
pub indent_spaces: usize,
}
impl Default for WriterOptions {
fn default() -> Self {
Self {
strict: true,
hard_break_spaces: false,
indent_spaces: 4,
}
}
}