pub struct ConcessionFeePriceSheet {
pub meta: Bo4eMeta,
pub designation: Option<String>,
pub description: Option<String>,
pub division: Option<Division>,
pub customer_group: Option<ConcessionFeeCustomerGroup>,
pub price_sheet_number: Option<String>,
pub validity_period: Option<TimePeriod>,
pub valid_from: Option<DateTime<Utc>>,
pub valid_until: Option<DateTime<Utc>>,
pub concession_fees: Vec<ConcessionFee>,
pub municipality: Option<String>,
pub operator: Option<Box<BusinessPartner>>,
}Expand description
A price sheet for concession fees.
Concession fees are paid to municipalities for the use of public ways for energy infrastructure.
German: PreisblattKonzessionsabgabe
§Example
use bo4e_core::bo::ConcessionFeePriceSheet;
use bo4e_core::enums::Division;
let price_sheet = ConcessionFeePriceSheet {
designation: Some("Konzessionsabgaben 2024".to_string()),
division: Some(Division::Electricity),
..Default::default()
};Fields§
§meta: Bo4eMetaBO4E metadata
designation: Option<String>Name/designation of the price sheet (Bezeichnung)
description: Option<String>Description (Beschreibung)
division: Option<Division>Energy division (Sparte)
customer_group: Option<ConcessionFeeCustomerGroup>Customer group for concession fees (Kundengruppe)
price_sheet_number: Option<String>Price sheet number/identifier (Preisblattnummer)
validity_period: Option<TimePeriod>Validity period (Gueltigkeitszeitraum)
valid_from: Option<DateTime<Utc>>Valid from date (Gueltig ab)
valid_until: Option<DateTime<Utc>>Valid until date (Gueltig bis)
concession_fees: Vec<ConcessionFee>Concession fees (Konzessionsabgaben)
municipality: Option<String>Municipality/area name (Gemeindebezeichnung)
operator: Option<Box<BusinessPartner>>Network operator
Trait Implementations§
Source§impl Bo4eObject for ConcessionFeePriceSheet
impl Bo4eObject for ConcessionFeePriceSheet
Source§fn type_name_german() -> &'static str
fn type_name_german() -> &'static str
Returns the German type name as used in the
_typ field. Read moreSource§fn type_name_english() -> &'static str
fn type_name_english() -> &'static str
Returns the English type name. Read more
Source§impl Clone for ConcessionFeePriceSheet
impl Clone for ConcessionFeePriceSheet
Source§fn clone(&self) -> ConcessionFeePriceSheet
fn clone(&self) -> ConcessionFeePriceSheet
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 ConcessionFeePriceSheet
impl Debug for ConcessionFeePriceSheet
Source§impl Default for ConcessionFeePriceSheet
impl Default for ConcessionFeePriceSheet
Source§fn default() -> ConcessionFeePriceSheet
fn default() -> ConcessionFeePriceSheet
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConcessionFeePriceSheet
impl<'de> Deserialize<'de> for ConcessionFeePriceSheet
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 PartialEq for ConcessionFeePriceSheet
impl PartialEq for ConcessionFeePriceSheet
Source§impl Serialize for ConcessionFeePriceSheet
impl Serialize for ConcessionFeePriceSheet
impl StructuralPartialEq for ConcessionFeePriceSheet
Auto Trait Implementations§
impl Freeze for ConcessionFeePriceSheet
impl RefUnwindSafe for ConcessionFeePriceSheet
impl Send for ConcessionFeePriceSheet
impl Sync for ConcessionFeePriceSheet
impl Unpin for ConcessionFeePriceSheet
impl UnsafeUnpin for ConcessionFeePriceSheet
impl UnwindSafe for ConcessionFeePriceSheet
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