#[repr(u8)]pub enum NumberOfRinses {
None = 0,
Normal = 1,
Extra = 2,
Max = 3,
}Variants§
None = 0
This laundry washer mode does not perform rinse cycles
Normal = 1
This laundry washer mode performs normal rinse cycles determined by the manufacturer
Extra = 2
This laundry washer mode performs an extra rinse cycle
Max = 3
This laundry washer mode performs the maximum number of rinse cycles determined by the manufacturer
Implementations§
Trait Implementations§
Source§impl Clone for NumberOfRinses
impl Clone for NumberOfRinses
Source§fn clone(&self) -> NumberOfRinses
fn clone(&self) -> NumberOfRinses
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 NumberOfRinses
impl Debug for NumberOfRinses
Source§impl<'de> Deserialize<'de> for NumberOfRinses
impl<'de> Deserialize<'de> for NumberOfRinses
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 From<NumberOfRinses> for u8
impl From<NumberOfRinses> for u8
Source§fn from(val: NumberOfRinses) -> Self
fn from(val: NumberOfRinses) -> Self
Converts to this type from the input type.
Source§impl PartialEq for NumberOfRinses
impl PartialEq for NumberOfRinses
Source§impl Serialize for NumberOfRinses
impl Serialize for NumberOfRinses
impl Copy for NumberOfRinses
impl Eq for NumberOfRinses
impl StructuralPartialEq for NumberOfRinses
Auto Trait Implementations§
impl Freeze for NumberOfRinses
impl RefUnwindSafe for NumberOfRinses
impl Send for NumberOfRinses
impl Sync for NumberOfRinses
impl Unpin for NumberOfRinses
impl UnwindSafe for NumberOfRinses
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