pub struct ConservationProof {
pub ngz_kwh: Decimal,
pub zugeordnet_kwh: Decimal,
pub delta_kwh: Decimal,
}Expand description
Proof that Anlage 6 §IV.1 holds for one quarter hour.
Returned rather than asserted, so a caller can file it beside the allocation and an auditor can re-check it without re-running the engine.
Fields§
§ngz_kwh: DecimalThe measured Netzgangzeitreihe value.
zugeordnet_kwh: DecimalWhat the parts add up to.
delta_kwh: DecimalThe Deltamenge.
Implementations§
Trait Implementations§
Source§impl Clone for ConservationProof
impl Clone for ConservationProof
Source§fn clone(&self) -> ConservationProof
fn clone(&self) -> ConservationProof
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 ConservationProof
impl Debug for ConservationProof
Source§impl<'de> Deserialize<'de> for ConservationProof
impl<'de> Deserialize<'de> for ConservationProof
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 Eq for ConservationProof
Source§impl PartialEq for ConservationProof
impl PartialEq for ConservationProof
Source§impl Serialize for ConservationProof
impl Serialize for ConservationProof
impl StructuralPartialEq for ConservationProof
Auto Trait Implementations§
impl Freeze for ConservationProof
impl RefUnwindSafe for ConservationProof
impl Send for ConservationProof
impl Sync for ConservationProof
impl Unpin for ConservationProof
impl UnsafeUnpin for ConservationProof
impl UnwindSafe for ConservationProof
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.