pub struct Sst {
pub xmlns: String,
pub count: Option<u32>,
pub unique_count: Option<u32>,
pub items: Vec<Si>,
}Expand description
Shared String Table root element (xl/sharedStrings.xml).
Fields§
§xmlns: String§count: Option<u32>Total reference count of shared strings in the workbook.
unique_count: Option<u32>Number of unique string entries.
items: Vec<Si>Shared string items.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Sst
impl<'de> Deserialize<'de> for Sst
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Sst
Auto Trait Implementations§
impl Freeze for Sst
impl RefUnwindSafe for Sst
impl Send for Sst
impl Sync for Sst
impl Unpin for Sst
impl UnwindSafe for Sst
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more