pub struct DataformReference<'a> {
pub main_sha256: &'a str,
pub vanguard_sha256: &'a str,
pub rearguard_sha256: &'a str,
pub recipe_hash: &'a str,
pub generated_from: &'a str,
}Expand description
The pinned-release DATAFORM reference, injected into DataformEvidence::reconcile so the
detector is unit-testable without vendoring the large .zi files. Production builds this from the
REF_2026B_* consts plus the computed dataform_recipe_hash.
Fields§
§main_sha256: &'a str§vanguard_sha256: &'a str§rearguard_sha256: &'a str§recipe_hash: &'a strThe shared generation recipe hash, stamped into the evidence when a form is detected.
generated_from: &'a strThe release tag the artifacts were generated from (e.g. "tzdb-2026b").
Trait Implementations§
Source§impl<'a> Clone for DataformReference<'a>
impl<'a> Clone for DataformReference<'a>
Source§fn clone(&self) -> DataformReference<'a>
fn clone(&self) -> DataformReference<'a>
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 moreimpl<'a> Copy for DataformReference<'a>
Auto Trait Implementations§
impl<'a> Freeze for DataformReference<'a>
impl<'a> RefUnwindSafe for DataformReference<'a>
impl<'a> Send for DataformReference<'a>
impl<'a> Sync for DataformReference<'a>
impl<'a> Unpin for DataformReference<'a>
impl<'a> UnsafeUnpin for DataformReference<'a>
impl<'a> UnwindSafe for DataformReference<'a>
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