#[non_exhaustive]pub enum ApplicationResetSubcode {
Show 16 variants
All(u8),
UserData(u8),
SimpleBilling(u8),
EnhancedBilling(u8),
MultiTariffBilling(u8),
InstantaneousValues(u8),
LoadManagementValues(u8),
Reserved1(u8),
InstallationStartup(u8),
Testing(u8),
Calibration(u8),
ConfigurationUpdates(u8),
Manufacturing(u8),
Development(u8),
Selftest(u8),
Reserved2(u8),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
All(u8)
UserData(u8)
SimpleBilling(u8)
EnhancedBilling(u8)
MultiTariffBilling(u8)
InstantaneousValues(u8)
LoadManagementValues(u8)
Reserved1(u8)
InstallationStartup(u8)
Testing(u8)
Calibration(u8)
ConfigurationUpdates(u8)
Manufacturing(u8)
Development(u8)
Selftest(u8)
Reserved2(u8)
Implementations§
Trait Implementations§
Source§impl Clone for ApplicationResetSubcode
impl Clone for ApplicationResetSubcode
Source§fn clone(&self) -> ApplicationResetSubcode
fn clone(&self) -> ApplicationResetSubcode
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 ApplicationResetSubcode
impl Debug for ApplicationResetSubcode
Source§impl PartialEq for ApplicationResetSubcode
impl PartialEq for ApplicationResetSubcode
impl Copy for ApplicationResetSubcode
impl StructuralPartialEq for ApplicationResetSubcode
Auto Trait Implementations§
impl Freeze for ApplicationResetSubcode
impl RefUnwindSafe for ApplicationResetSubcode
impl Send for ApplicationResetSubcode
impl Sync for ApplicationResetSubcode
impl Unpin for ApplicationResetSubcode
impl UnsafeUnpin for ApplicationResetSubcode
impl UnwindSafe for ApplicationResetSubcode
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