docx 1.1.2

A Rust library for parsing and generating docx files.
use strong_xml::{XmlRead, XmlWrite};

use crate::{__string_enum, __xml_test_suites};

/// Break
///
/// ```rust
/// use docx::document::*;
///
/// let br = Break::from(BreakType::Page);
/// ```
#[derive(Debug, Default, XmlRead, XmlWrite)]
#[cfg_attr(test, derive(PartialEq))]
#[xml(tag = "w:br")]
pub struct Break {
    /// Specifies the break type of this break.
    #[xml(attr = "type")]
    pub ty: Option<BreakType>,
}

impl<T: Into<Option<BreakType>>> From<T> for Break {
    fn from(val: T) -> Self {
        Break { ty: val.into() }
    }
}

/// Specifies the break type of a break
///
/// The default value is TextWrapping.
#[derive(Debug)]
#[cfg_attr(test, derive(PartialEq))]
pub enum BreakType {
    /// Text restarts on the next column.
    Column,
    /// Text restarts on the next page.
    Page,
    /// Text restarts on the next line.
    TextWrapping,
}

__string_enum! {
    BreakType {
        Column = "column",
        Page = "page",
        TextWrapping = "textWrapping",
    }
}

__xml_test_suites!(
    Break,
    Break::default(),
    r#"<w:br/>"#,
    Break::from(BreakType::Page),
    r#"<w:br type="page"/>"#,
);