pub struct ReportRow {
pub record_id: Option<i32>,
pub cells: Option<Vec<Value>>,
}Expand description
Represents a single row in a report.
Fields§
§record_id: Option<i32>§cells: Option<Vec<Value>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for ReportRow
impl<'de> Deserialize<'de> for ReportRow
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 ReportRow
impl RefUnwindSafe for ReportRow
impl Send for ReportRow
impl Sync for ReportRow
impl Unpin for ReportRow
impl UnsafeUnpin for ReportRow
impl UnwindSafe for ReportRow
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