pub struct TariffComponent {
pub tariff_component_id: Option<u32>,
pub price: Option<TariffPrice>,
pub friendly_credit: Option<bool>,
pub auxiliary_load: Option<AuxiliaryLoadSwitchSettings>,
pub peak_period: Option<PeakPeriod>,
pub threshold: Option<i64>,
pub label: Option<String>,
pub predicted: Option<bool>,
}Fields§
§tariff_component_id: Option<u32>§price: Option<TariffPrice>§friendly_credit: Option<bool>§auxiliary_load: Option<AuxiliaryLoadSwitchSettings>§peak_period: Option<PeakPeriod>§threshold: Option<i64>§label: Option<String>§predicted: Option<bool>Trait Implementations§
Source§impl Debug for TariffComponent
impl Debug for TariffComponent
Auto Trait Implementations§
impl Freeze for TariffComponent
impl RefUnwindSafe for TariffComponent
impl Send for TariffComponent
impl Sync for TariffComponent
impl Unpin for TariffComponent
impl UnwindSafe for TariffComponent
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