Struct changeforest::BinarySegmentationResult
source ·
[−]pub struct BinarySegmentationResult {
pub start: usize,
pub stop: usize,
pub model_selection_result: ModelSelectionResult,
pub optimizer_result: Option<OptimizerResult>,
pub left: Option<Box<BinarySegmentationResult>>,
pub right: Option<Box<BinarySegmentationResult>>,
pub segments: Option<Vec<OptimizerResult>>,
}Expand description
Struct holding results from a BinarySegmentationTree after fitting.
Fields
start: usizestop: usizemodel_selection_result: ModelSelectionResultoptimizer_result: Option<OptimizerResult>left: Option<Box<BinarySegmentationResult>>right: Option<Box<BinarySegmentationResult>>segments: Option<Vec<OptimizerResult>>Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for BinarySegmentationResult
impl Send for BinarySegmentationResult
impl Sync for BinarySegmentationResult
impl Unpin for BinarySegmentationResult
impl UnwindSafe for BinarySegmentationResult
Blanket Implementations
Mutably borrows from an owned value. Read more
