#[non_exhaustive]#[repr(u8)]pub enum GasConsumptionRateType {
PressureSac = 0,
VolumeSac = 1,
Rmv = 2,
}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.
Implementations§
Trait Implementations§
Source§impl Clone for GasConsumptionRateType
impl Clone for GasConsumptionRateType
Source§fn clone(&self) -> GasConsumptionRateType
fn clone(&self) -> GasConsumptionRateType
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 GasConsumptionRateType
impl Debug for GasConsumptionRateType
Source§impl Hash for GasConsumptionRateType
impl Hash for GasConsumptionRateType
Source§impl PartialEq for GasConsumptionRateType
impl PartialEq for GasConsumptionRateType
Source§fn eq(&self, other: &GasConsumptionRateType) -> bool
fn eq(&self, other: &GasConsumptionRateType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for GasConsumptionRateType
impl Eq for GasConsumptionRateType
impl StructuralPartialEq for GasConsumptionRateType
Auto Trait Implementations§
impl Freeze for GasConsumptionRateType
impl RefUnwindSafe for GasConsumptionRateType
impl Send for GasConsumptionRateType
impl Sync for GasConsumptionRateType
impl Unpin for GasConsumptionRateType
impl UnsafeUnpin for GasConsumptionRateType
impl UnwindSafe for GasConsumptionRateType
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