pub struct PlannedResourceTimeSeries {
pub time_series_identification: AttrV<DocumentId>,
pub business_type: AttrV<PrsBusinessType>,
pub direction: Option<AttrV<Direction>>,
pub connecting_area: Option<ControlZoneRef>,
pub resource_object: Option<AttrVWithScheme<String, GridElementCodingScheme>>,
pub product: AttrV<Product>,
pub acquiring_area: Option<AttrVWithScheme<String, EicCodingScheme>>,
pub grid_element: Option<AttrVWithScheme<String, GridElementCodingScheme>>,
pub measure_unit: AttrV<MeasureUnit>,
pub status: Option<AttrV<PrsTimeSeriesStatus>>,
pub resource_provider: Option<AttrVWithScheme<MarketParticipantId>>,
pub period: Period,
}Expand description
A single planned resource time series within a
PlannedResourceScheduleDocument.
Fields§
§time_series_identification: AttrV<DocumentId>Unique time-series identifier within this document (max 35 chars).
business_type: AttrV<PrsBusinessType>Business type.
direction: Option<AttrV<Direction>>Redispatch direction (optional — absent for non-directional series).
connecting_area: Option<ControlZoneRef>Control zone where the resource is connected (optional).
resource_object: Option<AttrVWithScheme<String, GridElementCodingScheme>>Resource object identifier (optional).
product: AttrV<Product>Product code (always active power 8716867000016).
acquiring_area: Option<AttrVWithScheme<String, EicCodingScheme>>German TSO control block reference (optional).
grid_element: Option<AttrVWithScheme<String, GridElementCodingScheme>>Grid element EIC or resource code (optional).
measure_unit: AttrV<MeasureUnit>Physical unit of quantity values.
status: Option<AttrV<PrsTimeSeriesStatus>>Time series status (optional).
resource_provider: Option<AttrVWithScheme<MarketParticipantId>>Resource provider (optional).
period: PeriodQuarter-hour power plan for the delivery day.
Trait Implementations§
Source§impl Clone for PlannedResourceTimeSeries
impl Clone for PlannedResourceTimeSeries
Source§fn clone(&self) -> PlannedResourceTimeSeries
fn clone(&self) -> PlannedResourceTimeSeries
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 PlannedResourceTimeSeries
impl Debug for PlannedResourceTimeSeries
Source§impl<'de> Deserialize<'de> for PlannedResourceTimeSeries
impl<'de> Deserialize<'de> for PlannedResourceTimeSeries
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 PlannedResourceTimeSeries
impl PartialEq for PlannedResourceTimeSeries
Source§fn eq(&self, other: &PlannedResourceTimeSeries) -> bool
fn eq(&self, other: &PlannedResourceTimeSeries) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlannedResourceTimeSeries
Auto Trait Implementations§
impl Freeze for PlannedResourceTimeSeries
impl RefUnwindSafe for PlannedResourceTimeSeries
impl Send for PlannedResourceTimeSeries
impl Sync for PlannedResourceTimeSeries
impl Unpin for PlannedResourceTimeSeries
impl UnsafeUnpin for PlannedResourceTimeSeries
impl UnwindSafe for PlannedResourceTimeSeries
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