#[non_exhaustive]pub enum MarketRole {
Show 13 variants
TechnicalResourceOperator,
BalanceCoordinator,
BalanceResponsibleParty,
DataProvider,
DeploymentResponsible,
EnergyServiceProvider,
CapacityUser,
Supplier,
MarketAreaManager,
MeteringPointOperator,
NetworkOperator,
RegisterOperator,
TransmissionSystemOperator,
}Expand description
Role of a market participant in the energy market.
German: Marktrolle
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
TechnicalResourceOperator
Technical resource operator (Betreiber einer technischen Ressource)
BalanceCoordinator
Balance coordinator / market area manager (Bilanzkoordinator / Marktgebietsverantwortlicher)
BalanceResponsibleParty
Balance responsible party (Bilanzkreisverantwortlicher)
DataProvider
Data provider
DeploymentResponsible
Deployment responsible (Einsatzverantwortlicher)
EnergyServiceProvider
Energy service provider of connection user (Energieserviceanbieter des Anschlussnutzers)
CapacityUser
Capacity user (Kapazitaetsnutzer)
Supplier
Supplier (Lieferant)
MarketAreaManager
Market area manager (Marktgebietsverantwortlicher)
MeteringPointOperator
Metering point operator (Messstellenbetreiber)
NetworkOperator
Network operator (Netzbetreiber)
RegisterOperator
Register operator (Registerbetreiber)
TransmissionSystemOperator
Transmission system operator (Uebertragungsnetzbetreiber)
Implementations§
Source§impl MarketRole
impl MarketRole
Sourcepub fn german_name(&self) -> &'static str
pub fn german_name(&self) -> &'static str
Returns the German name.
Trait Implementations§
Source§impl Clone for MarketRole
impl Clone for MarketRole
Source§fn clone(&self) -> MarketRole
fn clone(&self) -> MarketRole
Returns a duplicate of the value. Read more
1.0.0 · 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 MarketRole
impl Debug for MarketRole
Source§impl<'de> Deserialize<'de> for MarketRole
impl<'de> Deserialize<'de> for MarketRole
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 Hash for MarketRole
impl Hash for MarketRole
Source§impl PartialEq for MarketRole
impl PartialEq for MarketRole
Source§impl Serialize for MarketRole
impl Serialize for MarketRole
impl Copy for MarketRole
impl Eq for MarketRole
impl StructuralPartialEq for MarketRole
Auto Trait Implementations§
impl Freeze for MarketRole
impl RefUnwindSafe for MarketRole
impl Send for MarketRole
impl Sync for MarketRole
impl Unpin for MarketRole
impl UnwindSafe for MarketRole
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