pub struct NetworkMarketData {
pub dispatchable_loads: Vec<DispatchableLoad>,
pub pumped_hydro_units: Vec<PumpedHydroUnit>,
pub combined_cycle_plants: Vec<CombinedCyclePlant>,
pub outage_schedule: Vec<OutageEntry>,
pub reserve_zones: Vec<ReserveZone>,
pub ambient: Option<AmbientConditions>,
pub emission_policy: Option<EmissionPolicy>,
pub market_rules: Option<MarketRules>,
}Expand description
Market and dispatch data: dispatchable loads, reserves, combined-cycle plants, outage schedules, and system-wide policies.
Fields§
§dispatchable_loads: Vec<DispatchableLoad>Dispatchable loads (demand-response resources).
pumped_hydro_units: Vec<PumpedHydroUnit>Pumped hydro storage units (synchronous machine overlay).
combined_cycle_plants: Vec<CombinedCyclePlant>Combined cycle power plants with configuration-based commitment.
outage_schedule: Vec<OutageEntry>Outage / derate schedule for planning and dispatch.
reserve_zones: Vec<ReserveZone>Reserve zones defining zonal AS requirements.
ambient: Option<AmbientConditions>System-wide ambient conditions fallback.
emission_policy: Option<EmissionPolicy>System-wide emission constraints and carbon pricing.
market_rules: Option<MarketRules>Market rules (VOLL, AS requirements).
Trait Implementations§
Source§impl Clone for NetworkMarketData
impl Clone for NetworkMarketData
Source§fn clone(&self) -> NetworkMarketData
fn clone(&self) -> NetworkMarketData
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 moreSource§impl Debug for NetworkMarketData
impl Debug for NetworkMarketData
Source§impl Default for NetworkMarketData
impl Default for NetworkMarketData
Source§fn default() -> NetworkMarketData
fn default() -> NetworkMarketData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NetworkMarketData
impl<'de> Deserialize<'de> for NetworkMarketData
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
Auto Trait Implementations§
impl Freeze for NetworkMarketData
impl RefUnwindSafe for NetworkMarketData
impl Send for NetworkMarketData
impl Sync for NetworkMarketData
impl Unpin for NetworkMarketData
impl UnsafeUnpin for NetworkMarketData
impl UnwindSafe for NetworkMarketData
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