Skip to main content

Reduktionsfaktor

Struct Reduktionsfaktor 

Source
pub struct Reduktionsfaktor(/* private fields */);
Expand description

A §14a Modul 2 reduction factor — the fraction of the published Arbeitspreis actually paid.

Modul 2 is the prozentuale reduction; Modul 1 is the flat annual pauschale and carries no factor at all (see ArbeitspreisModell::Modul1Pauschal).

A newtype because the range matters: 0.85 is a 15 % reduction, and a value outside (0, 1] is not a reduction at all. The unconstrained Decimal this replaces was range-checked in the validator and not in the engine, so a caller who skipped validation could multiply the tariff by 5.

Implementations§

Source§

impl Reduktionsfaktor

Source

pub const REGELFALL: Self

A commonly published factor — 85 % of the tariff, i.e. a 15 % reduction.

Not a statutory rate: BK8-22/010-A leaves the Modul-2 percentage to each Netzbetreiber’s published Preisblatt, so this is a convenience default and never a substitute for the operator’s own figure.

Source

pub fn new(factor: Decimal) -> Result<Self, BillingError>

Build a factor.

§Errors

Returns crate::error::BillingError::InvalidInput outside (0, 1].

Source

pub const fn get(self) -> Decimal

The factor as a fraction.

Trait Implementations§

Source§

impl Clone for Reduktionsfaktor

Source§

fn clone(&self) -> Reduktionsfaktor

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Reduktionsfaktor

Source§

impl Debug for Reduktionsfaktor

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Reduktionsfaktor

Deserialising goes through Reduktionsfaktor::new, so a factor that arrives over the wire is range-checked exactly like one built in process.

Deriving it would have reintroduced the unconstrained Decimal this newtype exists to prevent: a request body carrying 5 would then multiply the Arbeitspreis by five with no error anywhere.

Source§

fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Eq for Reduktionsfaktor

Source§

impl PartialEq for Reduktionsfaktor

Source§

fn eq(&self, other: &Reduktionsfaktor) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for Reduktionsfaktor

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for Reduktionsfaktor

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.