umya-spreadsheet 2.3.3

umya-spreadsheet is a library written in pure Rust to read and write xlsx file.
Documentation
use crate::reader::driver::*;
use crate::structs::StringValue;
use crate::writer::driver::*;
use quick_xml::events::BytesStart;
use quick_xml::Reader;
use quick_xml::Writer;
use std::io::Cursor;

#[derive(Clone, Default, Debug)]
pub struct Stroke {
    color: StringValue,
    color_2: StringValue,
    dash_style: StringValue,
}

impl Stroke {
    pub fn get_color(&self) -> &str {
        self.color.get_value_str()
    }

    pub fn set_color<S: Into<String>>(&mut self, value: S) -> &mut Self {
        self.color.set_value(value);
        self
    }

    pub fn get_color_2(&self) -> &str {
        self.color_2.get_value_str()
    }

    pub fn set_color_2<S: Into<String>>(&mut self, value: S) -> &mut Self {
        self.color_2.set_value(value);
        self
    }

    pub fn get_dash_style(&self) -> &str {
        self.dash_style.get_value_str()
    }

    pub fn set_dash_style<S: Into<String>>(&mut self, value: S) -> &mut Self {
        self.dash_style.set_value(value);
        self
    }

    pub(crate) fn set_attributes<R: std::io::BufRead>(
        &mut self,
        _reader: &mut Reader<R>,
        e: &BytesStart,
    ) {
        set_string_from_xml!(self, e, color, "color");
        set_string_from_xml!(self, e, color_2, "color2");
        set_string_from_xml!(self, e, dash_style, "dashstyle");
    }

    pub(crate) fn write_to(&self, writer: &mut Writer<Cursor<Vec<u8>>>) {
        // v:stroke
        let mut attributes: Vec<(&str, &str)> = Vec::new();
        if self.color.has_value() {
            attributes.push(("color", self.color.get_value_str()));
        }
        if self.color_2.has_value() {
            attributes.push(("color2", self.color_2.get_value_str()));
        }
        if self.dash_style.has_value() {
            attributes.push(("dashstyle", self.dash_style.get_value_str()));
        }
        write_start_tag(writer, "v:stroke", attributes, true);
    }
}