pub trait HistogramCombine: Sized {
    // Required methods
    fn encapsulating_hist<S>(hists: &[S]) -> Result<Self, HistErrors>
       where S: Borrow<Self>;
    fn align<S>(&self, right: S) -> Result<usize, HistErrors>
       where S: Borrow<Self>;
}Expand description
§Used to get a histogram, which contains the smaller histograms
Required Methods§
Sourcefn encapsulating_hist<S>(hists: &[S]) -> Result<Self, HistErrors>where
    S: Borrow<Self>,
 
fn encapsulating_hist<S>(hists: &[S]) -> Result<Self, HistErrors>where
    S: Borrow<Self>,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.