pub struct CdlReport<T> {
pub dataset_path: String,
pub records_processed: usize,
pub feature_selection: Option<MrmrResult>,
pub causal_analysis: CdlDiscoveryOutcome<T>,
}Expand description
Aggregates all significant findings from a CDL pipeline execution.
The report is algorithm-neutral: causal_analysis carries the polymorphic
CdlDiscoveryOutcome, and feature_selection is present only for the SURD
sub-pipeline (BRCD performs no MRMR step).
Fields§
§dataset_path: String§records_processed: usize§feature_selection: Option<MrmrResult>§causal_analysis: CdlDiscoveryOutcome<T>Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for CdlReport<T>
impl<T> RefUnwindSafe for CdlReport<T>where
T: RefUnwindSafe,
impl<T> Send for CdlReport<T>where
T: Send,
impl<T> Sync for CdlReport<T>where
T: Sync,
impl<T> Unpin for CdlReport<T>where
T: Unpin,
impl<T> UnsafeUnpin for CdlReport<T>
impl<T> UnwindSafe for CdlReport<T>where
T: UnwindSafe,
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