pub struct ForecastingState {
pub forecaster: Arc<Forecaster>,
}Expand description
State for forecasting handlers
Fields§
§forecaster: Arc<Forecaster>Forecaster engine
Trait Implementations§
Source§impl Clone for ForecastingState
impl Clone for ForecastingState
Source§fn clone(&self) -> ForecastingState
fn clone(&self) -> ForecastingState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ForecastingState
impl RefUnwindSafe for ForecastingState
impl Send for ForecastingState
impl Sync for ForecastingState
impl Unpin for ForecastingState
impl UnsafeUnpin for ForecastingState
impl UnwindSafe for ForecastingState
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