pub struct Kostenblatt {
pub document_identification: AttrV<DocumentId>,
pub document_version: AttrV<DocumentVersion>,
pub document_type: AttrV<KostenblattDocType>,
pub process_type: AttrV<KostenblattProcessType>,
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<CostTimeSeries>,
}Expand description
Kostenblatt — cost sheet for redispatch billing between grid operators.
XSD version: 1.0d (Fehlerkorrektur 2025-04-16)
No XML namespace.
Contains energy-dependent and fixed cost data for each activated controllable resource in a given delivery day.
Fields§
§document_identification: AttrV<DocumentId>Unique document identifier (max 35 chars).
document_version: AttrV<DocumentVersion>Document version number (1–999).
document_type: AttrV<KostenblattDocType>Document type (always Z05).
process_type: AttrV<KostenblattProcessType>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).
time_series: Vec<CostTimeSeries>Cost time series (one or more).
Trait Implementations§
Source§impl Clone for Kostenblatt
impl Clone for Kostenblatt
Source§fn clone(&self) -> Kostenblatt
fn clone(&self) -> Kostenblatt
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 Kostenblatt
impl Debug for Kostenblatt
Source§impl<'de> Deserialize<'de> for Kostenblatt
impl<'de> Deserialize<'de> for Kostenblatt
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<Kostenblatt> for Document
impl From<Kostenblatt> for Document
Source§fn from(d: Kostenblatt) -> Self
fn from(d: Kostenblatt) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Kostenblatt
impl PartialEq for Kostenblatt
Source§fn eq(&self, other: &Kostenblatt) -> bool
fn eq(&self, other: &Kostenblatt) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Kostenblatt
impl Serialize for Kostenblatt
impl StructuralPartialEq for Kostenblatt
Auto Trait Implementations§
impl Freeze for Kostenblatt
impl RefUnwindSafe for Kostenblatt
impl Send for Kostenblatt
impl Sync for Kostenblatt
impl Unpin for Kostenblatt
impl UnsafeUnpin for Kostenblatt
impl UnwindSafe for Kostenblatt
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