umya-spreadsheet 2.3.3

umya-spreadsheet is a library written in pure Rust to read and write xlsx file.
Documentation
#[derive(Clone, Default, Debug, Eq, Ord, PartialEq, PartialOrd)]
pub struct Hyperlink {
    url: Box<str>,
    tooltip: Box<str>,
    location: bool,
}
impl Hyperlink {
    #[inline]
    pub fn get_url(&self) -> &str {
        &self.url
    }

    #[inline]
    pub fn set_url<S: Into<String>>(&mut self, value: S) -> &mut Hyperlink {
        self.url = value.into().into_boxed_str();
        self
    }

    #[inline]
    pub fn get_tooltip(&self) -> &str {
        &self.tooltip
    }

    #[inline]
    pub fn set_tooltip<S: Into<String>>(&mut self, value: S) -> &mut Hyperlink {
        self.tooltip = value.into().into_boxed_str();
        self
    }

    #[inline]
    pub fn get_location(&self) -> &bool {
        &self.location
    }

    #[inline]
    pub fn set_location(&mut self, value: bool) -> &mut Hyperlink {
        self.location = value;
        self
    }
}