pub struct MultiPeltResult {
pub changepoints: Vec<usize>,
}Expand description
Result of multivariate PELT changepoint detection.
Fields§
§changepoints: Vec<usize>Detected changepoint indices (0-based), shared across all channels.
Trait Implementations§
Source§impl Clone for MultiPeltResult
impl Clone for MultiPeltResult
Source§fn clone(&self) -> MultiPeltResult
fn clone(&self) -> MultiPeltResult
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 MultiPeltResult
impl RefUnwindSafe for MultiPeltResult
impl Send for MultiPeltResult
impl Sync for MultiPeltResult
impl Unpin for MultiPeltResult
impl UnsafeUnpin for MultiPeltResult
impl UnwindSafe for MultiPeltResult
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