pub struct ForecastTime {
pub cutoff_hours: u16,
pub cutoff_minutes: u8,
pub time: TimeRange<i32>,
}Fields§
§cutoff_hours: u16Hours after reference time of data cutoff (see Note 1).
cutoff_minutes: u8Minutes after reference time of data cutoff.
time: TimeRange<i32>Forecast time.
Trait Implementations§
Source§impl Clone for ForecastTime
impl Clone for ForecastTime
Source§fn clone(&self) -> ForecastTime
fn clone(&self) -> ForecastTime
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 ForecastTime
impl Debug for ForecastTime
Source§impl Dump for ForecastTime
impl Dump for ForecastTime
Source§impl PartialEq for ForecastTime
impl PartialEq for ForecastTime
impl StructuralPartialEq for ForecastTime
Source§impl TryFromSlice for ForecastTime
impl TryFromSlice for ForecastTime
Source§impl WriteToBuffer for ForecastTime
impl WriteToBuffer for ForecastTime
Auto Trait Implementations§
impl Freeze for ForecastTime
impl RefUnwindSafe for ForecastTime
impl Send for ForecastTime
impl Sync for ForecastTime
impl Unpin for ForecastTime
impl UnsafeUnpin for ForecastTime
impl UnwindSafe for ForecastTime
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