#[non_exhaustive]pub struct ScopfEnergyWindows {
pub w_en_max_pr: Vec<ScopfEnergyWindowMaxPrRow>,
pub w_en_max_cs: Vec<ScopfEnergyWindowMaxCsRow>,
pub w_en_min_pr: Vec<ScopfEnergyWindowMinPrRow>,
pub w_en_min_cs: Vec<ScopfEnergyWindowMinCsRow>,
pub t_w_en_max_pr: Vec<ScopfEnergyWindowPeriodMaxPrRow>,
pub t_w_en_max_cs: Vec<ScopfEnergyWindowPeriodMaxCsRow>,
pub t_w_en_min_pr: Vec<ScopfEnergyWindowPeriodMinPrRow>,
pub t_w_en_min_cs: Vec<ScopfEnergyWindowPeriodMinCsRow>,
}Expand description
Energy requirement windows and their period memberships.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.w_en_max_pr: Vec<ScopfEnergyWindowMaxPrRow>§w_en_max_cs: Vec<ScopfEnergyWindowMaxCsRow>§w_en_min_pr: Vec<ScopfEnergyWindowMinPrRow>§w_en_min_cs: Vec<ScopfEnergyWindowMinCsRow>§t_w_en_max_pr: Vec<ScopfEnergyWindowPeriodMaxPrRow>§t_w_en_max_cs: Vec<ScopfEnergyWindowPeriodMaxCsRow>§t_w_en_min_pr: Vec<ScopfEnergyWindowPeriodMinPrRow>§t_w_en_min_cs: Vec<ScopfEnergyWindowPeriodMinCsRow>Trait Implementations§
Source§impl Clone for ScopfEnergyWindows
impl Clone for ScopfEnergyWindows
Source§fn clone(&self) -> ScopfEnergyWindows
fn clone(&self) -> ScopfEnergyWindows
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 ScopfEnergyWindows
impl Debug for ScopfEnergyWindows
Source§impl<'de> Deserialize<'de> for ScopfEnergyWindows
impl<'de> Deserialize<'de> for ScopfEnergyWindows
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ScopfEnergyWindows
impl PartialEq for ScopfEnergyWindows
Source§fn eq(&self, other: &ScopfEnergyWindows) -> bool
fn eq(&self, other: &ScopfEnergyWindows) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ScopfEnergyWindows
impl Serialize for ScopfEnergyWindows
impl StructuralPartialEq for ScopfEnergyWindows
Auto Trait Implementations§
impl Freeze for ScopfEnergyWindows
impl RefUnwindSafe for ScopfEnergyWindows
impl Send for ScopfEnergyWindows
impl Sync for ScopfEnergyWindows
impl Unpin for ScopfEnergyWindows
impl UnsafeUnpin for ScopfEnergyWindows
impl UnwindSafe for ScopfEnergyWindows
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