pub struct Forecast {
pub point: Vec<f64>,
pub intervals: Option<ForecastIntervals>,
}
Expand description
A forecast containing point forecasts and, optionally, prediction intervals.
Fields§
§point: Vec<f64>
The point forecasts.
intervals: Option<ForecastIntervals>
The forecast intervals, if requested and supported by the trend model.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Forecast
impl RefUnwindSafe for Forecast
impl Send for Forecast
impl Sync for Forecast
impl Unpin for Forecast
impl UnwindSafe for Forecast
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