pub struct DataNewRow {
pub id: Option<RowId>,
pub indicator_id: Option<IndicatorId>,
pub measure1_id: Option<MeasureId>,
pub measure2_id: Option<MeasureId>,
pub unit_id: Option<UnitId>,
pub obs_val: Option<f64>,
pub date: Option<IsoDateTime>,
pub periodicity: Option<Periodicity>,
}Expand description
Строка данных из DataNewResponse::row_data.
Fields§
§id: Option<RowId>§indicator_id: Option<IndicatorId>§measure1_id: Option<MeasureId>§measure2_id: Option<MeasureId>§unit_id: Option<UnitId>§obs_val: Option<f64>§date: Option<IsoDateTime>§periodicity: Option<Periodicity>Trait Implementations§
Source§impl Clone for DataNewRow
impl Clone for DataNewRow
Source§fn clone(&self) -> DataNewRow
fn clone(&self) -> DataNewRow
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DataNewRow
impl Debug for DataNewRow
Source§impl<'de> Deserialize<'de> for DataNewRow
impl<'de> Deserialize<'de> for DataNewRow
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
Source§impl PartialEq for DataNewRow
impl PartialEq for DataNewRow
impl StructuralPartialEq for DataNewRow
Auto Trait Implementations§
impl Freeze for DataNewRow
impl RefUnwindSafe for DataNewRow
impl Send for DataNewRow
impl Sync for DataNewRow
impl Unpin for DataNewRow
impl UnsafeUnpin for DataNewRow
impl UnwindSafe for DataNewRow
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