pub struct DataMarketLocation {
pub malo_id: MaloId,
pub energy_direction: EnergyDirection,
pub measurement_technology_classification: MeasurementTechnologyClassification,
pub optional_change_forecast_basis: OptionalChangeForecastBasis,
pub data_market_location_properties: Vec<MarketLocationProperties>,
pub data_market_location_network_operators: Vec<TimeSlicedMarketPartner>,
pub data_market_location_transmission_system_operators: Vec<TimeSlicedMarketPartner>,
pub data_market_location_measuring_point_operators: Option<Vec<TimeSlicedMarketPartner>>,
pub data_market_location_suppliers: Option<Vec<TimeSlicedMarketPartner>>,
pub data_market_location_name: Option<PersonName>,
pub data_market_location_address: Option<PostalAddress>,
}Expand description
Full data about the identified market location.
Fields§
§malo_id: MaloId§energy_direction: EnergyDirection§measurement_technology_classification: MeasurementTechnologyClassification§optional_change_forecast_basis: OptionalChangeForecastBasis§data_market_location_properties: Vec<MarketLocationProperties>§data_market_location_network_operators: Vec<TimeSlicedMarketPartner>§data_market_location_transmission_system_operators: Vec<TimeSlicedMarketPartner>§data_market_location_measuring_point_operators: Option<Vec<TimeSlicedMarketPartner>>§data_market_location_suppliers: Option<Vec<TimeSlicedMarketPartner>>§data_market_location_name: Option<PersonName>§data_market_location_address: Option<PostalAddress>Trait Implementations§
Source§impl Clone for DataMarketLocation
impl Clone for DataMarketLocation
Source§fn clone(&self) -> DataMarketLocation
fn clone(&self) -> DataMarketLocation
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 DataMarketLocation
impl Debug for DataMarketLocation
Source§impl<'de> Deserialize<'de> for DataMarketLocation
impl<'de> Deserialize<'de> for DataMarketLocation
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 DataMarketLocation
impl PartialEq for DataMarketLocation
Source§fn eq(&self, other: &DataMarketLocation) -> bool
fn eq(&self, other: &DataMarketLocation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DataMarketLocation
impl Serialize for DataMarketLocation
impl StructuralPartialEq for DataMarketLocation
Auto Trait Implementations§
impl Freeze for DataMarketLocation
impl RefUnwindSafe for DataMarketLocation
impl Send for DataMarketLocation
impl Sync for DataMarketLocation
impl Unpin for DataMarketLocation
impl UnsafeUnpin for DataMarketLocation
impl UnwindSafe for DataMarketLocation
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