pub struct DeliveryForecast {
pub destination: String,
pub p_lt_1h: f64,
pub p_lt_6h: f64,
pub p_lt_24h: f64,
pub p_lt_3d: f64,
pub confidence: f64,
pub sample_encounters: u64,
pub note: String,
}Fields§
§destination: String§p_lt_1h: f64§p_lt_6h: f64§p_lt_24h: f64§p_lt_3d: f64§confidence: f64§sample_encounters: u64§note: StringTrait Implementations§
Source§impl Clone for DeliveryForecast
impl Clone for DeliveryForecast
Source§fn clone(&self) -> DeliveryForecast
fn clone(&self) -> DeliveryForecast
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 moreSource§impl Debug for DeliveryForecast
impl Debug for DeliveryForecast
Auto Trait Implementations§
impl Freeze for DeliveryForecast
impl RefUnwindSafe for DeliveryForecast
impl Send for DeliveryForecast
impl Sync for DeliveryForecast
impl Unpin for DeliveryForecast
impl UnsafeUnpin for DeliveryForecast
impl UnwindSafe for DeliveryForecast
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