pub struct BehavioralFidelityReport {Show 17 fields
pub profile: String,
pub generator_id: String,
pub generator_version: String,
pub seed: u64,
pub generated_at: DateTime<Utc>,
pub reference_corpus: CorpusSummary,
pub synthetic: CorpusSummary,
pub noise_floor: BaselineValues,
pub per_entity: BTreeMap<String, EntityMetrics>,
pub composite_bf_score: f64,
pub composite_bf_median: f64,
pub n_metrics_aggregated: usize,
pub n_metrics_excluded_degenerate: usize,
pub composite_bf_volume_corrected: f64,
pub n_metrics_excluded_volume: usize,
pub intraday_structural: Option<IntradayMetrics>,
pub gates: GateResult,
}Fields§
§profile: String§generator_id: String§generator_version: String§seed: u64§generated_at: DateTime<Utc>§reference_corpus: CorpusSummary§synthetic: CorpusSummary§noise_floor: BaselineValues§per_entity: BTreeMap<String, EntityMetrics>§composite_bf_score: f64§composite_bf_median: f64Median DR over the same non-degenerate metrics used for composite_bf_score.
Robust to a small number of very high-DR outlier metrics — compare with the
mean to gauge how much skew the distribution contains.
n_metrics_aggregated: usizeNumber of per-entity per-metric records included in the composite mean.
Excludes degenerate-baseline metrics (see n_metrics_excluded_degenerate).
n_metrics_excluded_degenerate: usizeNumber of per-entity per-metric records excluded from the composite mean
because their real-split baseline was degenerate (≈ 0). These are still
present in per_entity with is_degenerate_baseline = true.
composite_bf_volume_corrected: f64SP3.13 W3 — Composite mean excluding both degenerate-baseline metrics AND
volume-bounded metrics (is_volume_bounded = true). This is a
supplementary figure intended for volume-attribution-corrected analysis;
the headline composite remains composite_bf_score.
n_metrics_excluded_volume: usizeNumber of non-degenerate metrics excluded from composite_bf_volume_corrected
because they are flagged is_volume_bounded = true.
intraday_structural: Option<IntradayMetrics>§gates: GateResultImplementations§
Source§impl BehavioralFidelityReport
impl BehavioralFidelityReport
pub fn write_json(&self, path: &Path) -> BehavioralFidelityResult<()>
Source§impl BehavioralFidelityReport
impl BehavioralFidelityReport
pub fn write_markdown(&self, path: &Path) -> BehavioralFidelityResult<()>
pub fn write_csv(&self, path: &Path) -> BehavioralFidelityResult<()>
Trait Implementations§
Source§impl Clone for BehavioralFidelityReport
impl Clone for BehavioralFidelityReport
Source§fn clone(&self) -> BehavioralFidelityReport
fn clone(&self) -> BehavioralFidelityReport
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for BehavioralFidelityReport
impl Debug for BehavioralFidelityReport
Source§impl<'de> Deserialize<'de> for BehavioralFidelityReport
impl<'de> Deserialize<'de> for BehavioralFidelityReport
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>,
Source§impl PartialEq for BehavioralFidelityReport
impl PartialEq for BehavioralFidelityReport
Source§fn eq(&self, other: &BehavioralFidelityReport) -> bool
fn eq(&self, other: &BehavioralFidelityReport) -> bool
self and other values to be equal, and is used by ==.Source§impl Serialize for BehavioralFidelityReport
impl Serialize for BehavioralFidelityReport
impl StructuralPartialEq for BehavioralFidelityReport
Auto Trait Implementations§
impl Freeze for BehavioralFidelityReport
impl RefUnwindSafe for BehavioralFidelityReport
impl Send for BehavioralFidelityReport
impl Sync for BehavioralFidelityReport
impl Unpin for BehavioralFidelityReport
impl UnsafeUnpin for BehavioralFidelityReport
impl UnwindSafe for BehavioralFidelityReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.