pub struct Header {
pub location: Location,
pub design_conditions: Option<Vec<String>>,
pub typical_extreme_periods: Vec<TypicalExtremePeriod>,
pub ground_temperatures: Vec<GroundTemperatureSample>,
pub holidays_daylight_savings: HolidayDaylightSavings,
pub comments: Vec<String>,
pub data_periods: DataPeriods,
}
Expand description
EPW File header
Fields§
§location: Location
§design_conditions: Option<Vec<String>>
§typical_extreme_periods: Vec<TypicalExtremePeriod>
§ground_temperatures: Vec<GroundTemperatureSample>
§holidays_daylight_savings: HolidayDaylightSavings
§comments: Vec<String>
§data_periods: DataPeriods
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Header
impl RefUnwindSafe for Header
impl Send for Header
impl Sync for Header
impl Unpin for Header
impl UnwindSafe for Header
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