pub struct PreparedMetadata {
pub refreshed_at: SystemTime,
pub transform_applied: bool,
pub sources_used: Vec<String>,
}Expand description
Per-transform telemetry. Captures whether the middleware actually ran (vs. passthrough) plus the names of the sources the transform consumed.
Fields§
§refreshed_at: SystemTime§transform_applied: booltrue when transform middleware was invoked; false for the
single-source passthrough path.
sources_used: Vec<String>Names of every source that fed the transform stage. Insertion order
matches the YAML — preserved by carrying the IndexMap keys
directly out of stage 1.
Trait Implementations§
Source§impl Clone for PreparedMetadata
impl Clone for PreparedMetadata
Source§fn clone(&self) -> PreparedMetadata
fn clone(&self) -> PreparedMetadata
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 moreAuto Trait Implementations§
impl Freeze for PreparedMetadata
impl RefUnwindSafe for PreparedMetadata
impl Send for PreparedMetadata
impl Sync for PreparedMetadata
impl Unpin for PreparedMetadata
impl UnsafeUnpin for PreparedMetadata
impl UnwindSafe for PreparedMetadata
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