pub struct NetworkConstraintTimeSeries {
pub time_series_identification: AttrV<DocumentId>,
pub business_type: AttrV<NcdBusinessType>,
pub direction: AttrV<Direction>,
pub connecting_area: ControlZoneRef,
pub resource_object: ResourceObjectRef,
pub grid_element: AttrVWithScheme<String, GridElementCodingScheme>,
pub measurement_unit: AttrV<MeasureUnit>,
pub status: Option<AttrV<NcdStatus>>,
pub period: Period,
}Expand description
A single constraint time series within a NetworkConstraintDocument.
Fields§
§time_series_identification: AttrV<DocumentId>Unique time-series identifier (max 35 chars).
business_type: AttrV<NcdBusinessType>Business type: dispatchable production (A77) or network element (B59).
direction: AttrV<Direction>Direction: up (A01) or down (A02).
connecting_area: ControlZoneRefControl zone where the resource / element is located.
resource_object: ResourceObjectRefResource object identifier (BDEW resource code, NDE scheme).
grid_element: AttrVWithScheme<String, GridElementCodingScheme>Grid element EIC or resource code.
measurement_unit: AttrV<MeasureUnit>Physical unit of quantity values.
status: Option<AttrV<NcdStatus>>Optional activation status.
period: PeriodQuarter-hour constraint data for the delivery day.
Trait Implementations§
Source§impl Clone for NetworkConstraintTimeSeries
impl Clone for NetworkConstraintTimeSeries
Source§fn clone(&self) -> NetworkConstraintTimeSeries
fn clone(&self) -> NetworkConstraintTimeSeries
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 NetworkConstraintTimeSeries
impl Debug for NetworkConstraintTimeSeries
Source§impl<'de> Deserialize<'de> for NetworkConstraintTimeSeries
impl<'de> Deserialize<'de> for NetworkConstraintTimeSeries
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 NetworkConstraintTimeSeries
impl PartialEq for NetworkConstraintTimeSeries
Source§fn eq(&self, other: &NetworkConstraintTimeSeries) -> bool
fn eq(&self, other: &NetworkConstraintTimeSeries) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NetworkConstraintTimeSeries
Auto Trait Implementations§
impl Freeze for NetworkConstraintTimeSeries
impl RefUnwindSafe for NetworkConstraintTimeSeries
impl Send for NetworkConstraintTimeSeries
impl Sync for NetworkConstraintTimeSeries
impl Unpin for NetworkConstraintTimeSeries
impl UnsafeUnpin for NetworkConstraintTimeSeries
impl UnwindSafe for NetworkConstraintTimeSeries
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