pub struct CostTimeSeries {
pub time_series_identification: AttrV<DocumentId>,
pub business_type: AttrV<CostBusinessType>,
pub direction: Option<AttrV<Direction>>,
pub product: AttrV<Product>,
pub connecting_area: Option<ControlZoneRef>,
pub resource_object: Option<ResourceObjectRef>,
pub period: Period,
}Expand description
A single cost time series within a Kostenblatt.
Fields§
§time_series_identification: AttrV<DocumentId>Unique time-series identifier (max 35 chars).
business_type: AttrV<CostBusinessType>Cost type.
direction: Option<AttrV<Direction>>Direction (optional — absent for startup/fixed costs).
product: AttrV<Product>Product (always active power 8716867000016).
connecting_area: Option<ControlZoneRef>Control zone of the resource (optional).
resource_object: Option<ResourceObjectRef>Resource object identifier (BDEW resource code, NDE scheme; optional).
period: PeriodQuarter-hour cost data for the delivery day.
Trait Implementations§
Source§impl Clone for CostTimeSeries
impl Clone for CostTimeSeries
Source§fn clone(&self) -> CostTimeSeries
fn clone(&self) -> CostTimeSeries
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 CostTimeSeries
impl Debug for CostTimeSeries
Source§impl<'de> Deserialize<'de> for CostTimeSeries
impl<'de> Deserialize<'de> for CostTimeSeries
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 CostTimeSeries
impl PartialEq for CostTimeSeries
Source§fn eq(&self, other: &CostTimeSeries) -> bool
fn eq(&self, other: &CostTimeSeries) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CostTimeSeries
impl Serialize for CostTimeSeries
impl StructuralPartialEq for CostTimeSeries
Auto Trait Implementations§
impl Freeze for CostTimeSeries
impl RefUnwindSafe for CostTimeSeries
impl Send for CostTimeSeries
impl Sync for CostTimeSeries
impl Unpin for CostTimeSeries
impl UnsafeUnpin for CostTimeSeries
impl UnwindSafe for CostTimeSeries
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