pub struct StoredRecord {
pub time_nanos: i128,
pub dimensions: Vec<(String, String)>,
pub measure_name: String,
pub measure_value: String,
pub measure_value_type: String,
}Expand description
One ingested Timestream data point, normalized to nanoseconds so the query
engine can time-filter and format it uniformly regardless of the write-time
TimeUnit.
Fields§
§time_nanos: i128Epoch time in nanoseconds.
dimensions: Vec<(String, String)>Dimension name -> value, in insertion order.
measure_name: String§measure_value: String§measure_value_type: StringDOUBLE / BIGINT / VARCHAR / BOOLEAN / TIMESTAMP / MULTI.
Trait Implementations§
Source§impl Clone for StoredRecord
impl Clone for StoredRecord
Source§fn clone(&self) -> StoredRecord
fn clone(&self) -> StoredRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StoredRecord
impl Debug for StoredRecord
Source§impl<'de> Deserialize<'de> for StoredRecord
impl<'de> Deserialize<'de> for StoredRecord
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 StoredRecord
impl RefUnwindSafe for StoredRecord
impl Send for StoredRecord
impl Sync for StoredRecord
impl Unpin for StoredRecord
impl UnsafeUnpin for StoredRecord
impl UnwindSafe for StoredRecord
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