pub struct SalesTariffEntry {
pub consumption_cost: Option<Vec<ConsumptionCost, 3usize>>,
pub custom_data: Option<CustomData>,
pub e_price_level: Option<i64>,
pub relative_time_interval: RelativeTimeInterval,
}Fields§
§consumption_cost: Option<Vec<ConsumptionCost, 3usize>>§custom_data: Option<CustomData>§e_price_level: Option<i64>Defines the price level of this SalesTariffEntry (referring to NumEPriceLevels). Small values for the EPriceLevel represent a cheaper TariffEntry. Large values for the EPriceLevel represent a more expensive TariffEntry.
relative_time_interval: RelativeTimeIntervalTrait Implementations§
Source§impl Clone for SalesTariffEntry
impl Clone for SalesTariffEntry
Source§fn clone(&self) -> SalesTariffEntry
fn clone(&self) -> SalesTariffEntry
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 SalesTariffEntry
impl Debug for SalesTariffEntry
Source§impl PartialEq for SalesTariffEntry
impl PartialEq for SalesTariffEntry
impl StructuralPartialEq for SalesTariffEntry
Auto Trait Implementations§
impl Freeze for SalesTariffEntry
impl RefUnwindSafe for SalesTariffEntry
impl Send for SalesTariffEntry
impl Sync for SalesTariffEntry
impl Unpin for SalesTariffEntry
impl UnsafeUnpin for SalesTariffEntry
impl UnwindSafe for SalesTariffEntry
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