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.
sourcepub fn with_capacity(level: f64, capacity: usize) -> ForecastIntervals
pub fn with_capacity(level: f64, capacity: usize) -> ForecastIntervals
Return empty forecast intervals with the specified capacity.
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 Freeze for ForecastIntervals
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)