pub enum RowContent {
Coldata {
col_data: Vec<ColData>,
},
HeaderRowsSummary {
header: Option<ColDataCollection>,
summary: Option<ColDataCollection>,
rows: Option<Rows>,
},
}Expand description
The Row complexType has a choice: either (Header, Rows, Summary) or (ColData repeated).
Variants§
Coldata
Contains a list of ColData elements.
HeaderRowsSummary
Contains Header, Rows, and Summary together.
Trait Implementations§
Source§impl Debug for RowContent
impl Debug for RowContent
Source§impl<'de> Deserialize<'de> for RowContent
impl<'de> Deserialize<'de> for RowContent
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
Auto Trait Implementations§
impl Freeze for RowContent
impl RefUnwindSafe for RowContent
impl Send for RowContent
impl Sync for RowContent
impl Unpin for RowContent
impl UnwindSafe for RowContent
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