umya-spreadsheet 2.3.3

umya-spreadsheet is a library written in pure Rust to read and write xlsx file.
Documentation
// a:fillRect
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 FillRectangle {
    bottom: usize,
    left: usize,
    right: usize,
    top: usize,
}
impl FillRectangle {
    #[inline]
    pub fn get_bottom(&self) -> &usize {
        &self.bottom
    }

    #[inline]
    pub fn set_bottom(&mut self, value: usize) {
        self.bottom = value;
    }

    #[inline]
    pub fn get_left(&self) -> &usize {
        &self.left
    }

    #[inline]
    pub fn set_left(&mut self, value: usize) {
        self.left = value;
    }

    #[inline]
    pub fn get_right(&self) -> &usize {
        &self.right
    }

    #[inline]
    pub fn set_right(&mut self, value: usize) {
        self.right = value;
    }

    #[inline]
    pub fn get_top(&self) -> &usize {
        &self.top
    }

    #[inline]
    pub fn set_top(&mut self, value: usize) {
        self.top = value;
    }

    #[inline]
    pub(crate) fn set_attributes<R: std::io::BufRead>(
        &mut self,
        _reader: &mut Reader<R>,
        _e: &BytesStart,
    ) {
    }

    #[inline]
    pub(crate) fn write_to(&self, writer: &mut Writer<Cursor<Vec<u8>>>) {
        // a:fillRect
        write_start_tag(writer, "a:fillRect", vec![], true);
    }
}