pub struct TemporalRecord {
pub captured_utc: String,
pub tzdb_version: String,
pub zones: Vec<String>,
}Expand description
The envelope/audit record: what instant the run saw, under which tz
database, rendered in which declared zones. Elided from the wire when
absent (skip_serializing_if at the envelope field) — every pre-v2.46.0
flow’s wire stays byte-identical.
Fields§
§captured_utc: StringRFC 3339 UTC instant of the run’s single capture.
tzdb_version: StringIANA tz-database release the render resolved against (v2.27.0).
zones: Vec<String>Declared zones actually rendered this run, first-use order.
Trait Implementations§
Source§impl Clone for TemporalRecord
impl Clone for TemporalRecord
Source§fn clone(&self) -> TemporalRecord
fn clone(&self) -> TemporalRecord
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 TemporalRecord
impl Debug for TemporalRecord
Source§impl<'de> Deserialize<'de> for TemporalRecord
impl<'de> Deserialize<'de> for TemporalRecord
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
impl Eq for TemporalRecord
Source§impl PartialEq for TemporalRecord
impl PartialEq for TemporalRecord
Source§impl Serialize for TemporalRecord
impl Serialize for TemporalRecord
impl StructuralPartialEq for TemporalRecord
Auto Trait Implementations§
impl Freeze for TemporalRecord
impl RefUnwindSafe for TemporalRecord
impl Send for TemporalRecord
impl Sync for TemporalRecord
impl Unpin for TemporalRecord
impl UnsafeUnpin for TemporalRecord
impl UnwindSafe for TemporalRecord
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