pub struct PlannedResourceScheduleDocument {
pub document_identification: AttrV<DocumentId>,
pub document_version: AttrV<DocumentVersion>,
pub document_type: AttrV<PrsDocType>,
pub process_type: AttrV<PrsProcessType>,
pub sender_identification: AttrVWithScheme<MarketParticipantId>,
pub sender_role: AttrV<MarketRoleType>,
pub receiver_identification: AttrVWithScheme<MarketParticipantId>,
pub receiver_role: AttrV<MarketRoleType>,
pub document_date_time: AttrV<UtcDateTime>,
pub time_period_covered: AttrV<TimeInterval>,
pub time_series: Vec<PlannedResourceTimeSeries>,
}Expand description
PlannedResourceScheduleDocument — day-ahead and intraday resource
planning data submitted by resource providers and DSOs.
XSD version: 1.0f (Fehlerkorrektur 2026-02-19)
No XML namespace (no targetNamespace in XSD).
Fields§
§document_identification: AttrV<DocumentId>Unique document identifier (max 35 chars).
document_version: AttrV<DocumentVersion>Document version number (1–999).
document_type: AttrV<PrsDocType>Document type.
process_type: AttrV<PrsProcessType>Process type (always forecast).
sender_identification: AttrVWithScheme<MarketParticipantId>Sender’s market participant identifier.
sender_role: AttrV<MarketRoleType>Sender’s market role.
receiver_identification: AttrVWithScheme<MarketParticipantId>Receiver’s market participant identifier.
receiver_role: AttrV<MarketRoleType>Receiver’s market role.
document_date_time: AttrV<UtcDateTime>Document creation timestamp (UTC, second precision).
time_period_covered: AttrV<TimeInterval>Delivery period covered by this document (UTC interval).
time_series: Vec<PlannedResourceTimeSeries>Planned resource time series (one or more).
Trait Implementations§
Source§impl Clone for PlannedResourceScheduleDocument
impl Clone for PlannedResourceScheduleDocument
Source§fn clone(&self) -> PlannedResourceScheduleDocument
fn clone(&self) -> PlannedResourceScheduleDocument
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<'de> Deserialize<'de> for PlannedResourceScheduleDocument
impl<'de> Deserialize<'de> for PlannedResourceScheduleDocument
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 From<PlannedResourceScheduleDocument> for Document
impl From<PlannedResourceScheduleDocument> for Document
Source§fn from(d: PlannedResourceScheduleDocument) -> Self
fn from(d: PlannedResourceScheduleDocument) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PlannedResourceScheduleDocument
impl PartialEq for PlannedResourceScheduleDocument
Source§fn eq(&self, other: &PlannedResourceScheduleDocument) -> bool
fn eq(&self, other: &PlannedResourceScheduleDocument) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlannedResourceScheduleDocument
Auto Trait Implementations§
impl Freeze for PlannedResourceScheduleDocument
impl RefUnwindSafe for PlannedResourceScheduleDocument
impl Send for PlannedResourceScheduleDocument
impl Sync for PlannedResourceScheduleDocument
impl Unpin for PlannedResourceScheduleDocument
impl UnsafeUnpin for PlannedResourceScheduleDocument
impl UnwindSafe for PlannedResourceScheduleDocument
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