pub struct NormalizedKayrosRecord {
pub data_type: String,
pub data_type_hex: String,
pub data_item: String,
pub kayros_hash: String,
pub prev_hash: Option<String>,
pub hash_type: String,
pub uuid: String,
pub timestamp: String,
pub position: i64,
pub raw: GetRecordResponse,
}Fields§
§data_type: String§data_type_hex: String§data_item: String§kayros_hash: String§prev_hash: Option<String>§hash_type: String§uuid: String§timestamp: String§position: i64§raw: GetRecordResponseTrait Implementations§
Source§impl Clone for NormalizedKayrosRecord
impl Clone for NormalizedKayrosRecord
Source§fn clone(&self) -> NormalizedKayrosRecord
fn clone(&self) -> NormalizedKayrosRecord
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 NormalizedKayrosRecord
impl Debug for NormalizedKayrosRecord
Source§impl Default for NormalizedKayrosRecord
impl Default for NormalizedKayrosRecord
Source§fn default() -> NormalizedKayrosRecord
fn default() -> NormalizedKayrosRecord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NormalizedKayrosRecord
impl<'de> Deserialize<'de> for NormalizedKayrosRecord
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 NormalizedKayrosRecord
impl PartialEq for NormalizedKayrosRecord
Source§fn eq(&self, other: &NormalizedKayrosRecord) -> bool
fn eq(&self, other: &NormalizedKayrosRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NormalizedKayrosRecord
impl Serialize for NormalizedKayrosRecord
impl Eq for NormalizedKayrosRecord
impl StructuralPartialEq for NormalizedKayrosRecord
Auto Trait Implementations§
impl Freeze for NormalizedKayrosRecord
impl RefUnwindSafe for NormalizedKayrosRecord
impl Send for NormalizedKayrosRecord
impl Sync for NormalizedKayrosRecord
impl Unpin for NormalizedKayrosRecord
impl UnsafeUnpin for NormalizedKayrosRecord
impl UnwindSafe for NormalizedKayrosRecord
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