use crate::;
use Read;
/// https://learn.microsoft.com/en-us/dotnet/api/documentformat.openxml.spreadsheet.inlinestring?view=openxml-3.0.1
///
/// This element allows for strings to be expressed directly in the cell definition instead of implementing the shared string table.
///
/// Example
/// ```
/// <c r="A1" t="inlineStr">
/// <is><t>This is inline string example</t></is>
/// </c>
/// ```
///
/// is (Rich Text Inline)
pub type XlsxInlineString = XlsxStringItem;
pub