pub struct NetworkConstraintDocument {
pub document_identification: AttrV<DocumentId>,
pub document_version: AttrV<DocumentVersion>,
pub document_type: AttrV<NcdDocType>,
pub process_type: AttrV<NcdProcessType>,
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 doc_status: Option<NcdDocStatus>,
pub time_series: Vec<NetworkConstraintTimeSeries>,
}Expand description
NetworkConstraintDocument — grid congestion constraint data submitted
by TSOs to resource providers’ NB.
XSD version: 1.1b (2025-04-01)
No XML namespace.
Fields§
§document_identification: AttrV<DocumentId>Unique document identifier (max 35 chars).
document_version: AttrV<DocumentVersion>Document version number (1–999).
document_type: AttrV<NcdDocType>Document type (always B15).
process_type: AttrV<NcdProcessType>Process type (always A14).
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 (UTC interval).
doc_status: Option<NcdDocStatus>Optional withdrawal status.
time_series: Vec<NetworkConstraintTimeSeries>Network constraint time series (0+; absent when doc_status is set).
Trait Implementations§
Source§impl Clone for NetworkConstraintDocument
impl Clone for NetworkConstraintDocument
Source§fn clone(&self) -> NetworkConstraintDocument
fn clone(&self) -> NetworkConstraintDocument
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 NetworkConstraintDocument
impl Debug for NetworkConstraintDocument
Source§impl<'de> Deserialize<'de> for NetworkConstraintDocument
impl<'de> Deserialize<'de> for NetworkConstraintDocument
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<NetworkConstraintDocument> for Document
impl From<NetworkConstraintDocument> for Document
Source§fn from(d: NetworkConstraintDocument) -> Self
fn from(d: NetworkConstraintDocument) -> Self
Converts to this type from the input type.
Source§impl PartialEq for NetworkConstraintDocument
impl PartialEq for NetworkConstraintDocument
Source§fn eq(&self, other: &NetworkConstraintDocument) -> bool
fn eq(&self, other: &NetworkConstraintDocument) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NetworkConstraintDocument
Auto Trait Implementations§
impl Freeze for NetworkConstraintDocument
impl RefUnwindSafe for NetworkConstraintDocument
impl Send for NetworkConstraintDocument
impl Sync for NetworkConstraintDocument
impl Unpin for NetworkConstraintDocument
impl UnsafeUnpin for NetworkConstraintDocument
impl UnwindSafe for NetworkConstraintDocument
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