grid_tariffs/
lib.rs

1//! Grid operator information
2//!
3//! This information is written for consumers specifically
4//! Costs for apartments are excluded as we do not aim to support those
5//! All costs are specified with VAT included
6//!
7pub use crate::{
8    costs::*,
9    country::Country,
10    currency::*,
11    feed_in_revenue::{FeedInRevenue, FeedInRevenueSimplified},
12    fuse::*,
13    language::Language,
14    links::*,
15    load_type::*,
16    local_administrative_unit::*,
17    money::Money,
18    months::*,
19    operator::*,
20    peaks::*,
21    power_tariffs::{PowerTariff, PowerTariffSimplified, TariffCalculationMethod},
22    price_list::PriceList,
23    tax_reductions::*,
24    taxes::*,
25    transfer_fee::{TransferFee, TransferFeeSimplified},
26};
27pub(crate) use timezone::*;
28
29mod constants;
30mod costs;
31mod country;
32mod currency;
33mod feed_in_revenue;
34mod fuse;
35mod helpers;
36mod hours;
37mod language;
38mod links;
39mod load_type;
40mod local_administrative_unit;
41mod minivec;
42mod money;
43mod months;
44mod operator;
45mod peaks;
46mod power_tariffs;
47mod price_list;
48pub mod registry;
49mod tax_reductions;
50mod taxes;
51mod timezone;
52mod transfer_fee;