pub struct Quote {
pub einheit: String,
pub wert: Decimal3,
pub bilanzkreis_ausgleichsfahrplan: String,
pub lieferant: StammdatenParticipantRef,
}Expand description
One share of the bilanzieller Ausgleich, and where it is booked.
Each Quote names the Redispatch-Bilanzkreis the corresponding share of
the Ausgleichsfahrplan is scheduled against, and the Lieferant it belongs
to. BilAReM Kap. 2.1.2 makes both load-bearing: the Ausgleich runs „durch
die Anmeldung korrespondierender Fahrpläne“, and „jeder Netzbetreiber
verwendet genau einen Bilanzkreis als Redispatch-Bilanzkreis“.
Fields§
§einheit: StringUnit of wert — always P1 (percent) in the current XSD.
wert: Decimal3The share, in percent.
bilanzkreis_ausgleichsfahrplan: StringBilanzkreis the Ausgleichsfahrplan for this share is scheduled against (16-character EIC).
lieferant: StammdatenParticipantRefLieferant this share belongs to.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Quote
impl<'de> Deserialize<'de> for Quote
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
impl StructuralPartialEq for Quote
Auto Trait Implementations§
impl Freeze for Quote
impl RefUnwindSafe for Quote
impl Send for Quote
impl Sync for Quote
impl Unpin for Quote
impl UnsafeUnpin for Quote
impl UnwindSafe for Quote
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