Struct augurs_core::ForecastIntervals
source · pub struct ForecastIntervals {
pub level: f64,
pub lower: Vec<f64>,
pub upper: Vec<f64>,
}Expand description
Forecast intervals.
Fields§
§level: f64The confidence level for the intervals.
lower: Vec<f64>The lower prediction intervals.
upper: Vec<f64>The upper prediction intervals.
Implementations§
source§impl ForecastIntervals
impl ForecastIntervals
sourcepub fn empty(level: f64) -> ForecastIntervals
pub fn empty(level: f64) -> ForecastIntervals
Return empty forecast intervals.
Trait Implementations§
source§impl Clone for ForecastIntervals
impl Clone for ForecastIntervals
source§fn clone(&self) -> ForecastIntervals
fn clone(&self) -> ForecastIntervals
Returns a copy 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 RefUnwindSafe for ForecastIntervals
impl Send for ForecastIntervals
impl Sync for ForecastIntervals
impl Unpin for ForecastIntervals
impl UnwindSafe for ForecastIntervals
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