pub struct WeatherData {
pub records: Vec<WeatherRecord>,
pub metadata: WeatherMetadata,
}Expand description
Container for weather time-series data plus metadata.
Fields§
§records: Vec<WeatherRecord>§metadata: WeatherMetadataTrait Implementations§
Source§impl Clone for WeatherData
impl Clone for WeatherData
Source§fn clone(&self) -> WeatherData
fn clone(&self) -> WeatherData
Returns a duplicate 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 WeatherData
impl RefUnwindSafe for WeatherData
impl Send for WeatherData
impl Sync for WeatherData
impl Unpin for WeatherData
impl UnsafeUnpin for WeatherData
impl UnwindSafe for WeatherData
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