pub trait EstimateFrom<O: State>where
    Self: State,
    DefaultAllocator: Allocator<f64, <O as State>::Size> + Allocator<f64, <O as State>::VecLength> + Allocator<f64, <O as State>::Size, <O as State>::Size> + Allocator<f64, Self::Size> + Allocator<f64, Self::VecLength> + Allocator<f64, Self::Size, Self::Size>,{
    // Required method
    fn extract(from: O) -> Self;
}

Required Methods§

source

fn extract(from: O) -> Self

From the state extract the state to be estimated

Implementors§