#[repr(u8)]pub enum SkipAreaStatus {
Success = 0,
Invalidarealist = 1,
Invalidinmode = 2,
Invalidskippedarea = 3,
}Variants§
Success = 0
Skipping the area is allowed and possible, or the device was operating at the last available area and has stopped.
Invalidarealist = 1
The SelectedAreas attribute is empty.
Invalidinmode = 2
The received request cannot be handled due to the current mode of the device. For example, the CurrentArea attribute is null or the device is not operating.
Invalidskippedarea = 3
The SkippedArea field doesn’t match an entry in the SupportedAreas list.
Implementations§
Trait Implementations§
Source§impl Clone for SkipAreaStatus
impl Clone for SkipAreaStatus
Source§fn clone(&self) -> SkipAreaStatus
fn clone(&self) -> SkipAreaStatus
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 SkipAreaStatus
impl Debug for SkipAreaStatus
Source§impl<'de> Deserialize<'de> for SkipAreaStatus
impl<'de> Deserialize<'de> for SkipAreaStatus
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<SkipAreaStatus> for u8
impl From<SkipAreaStatus> for u8
Source§fn from(val: SkipAreaStatus) -> Self
fn from(val: SkipAreaStatus) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SkipAreaStatus
impl PartialEq for SkipAreaStatus
Source§impl Serialize for SkipAreaStatus
impl Serialize for SkipAreaStatus
impl Copy for SkipAreaStatus
impl Eq for SkipAreaStatus
impl StructuralPartialEq for SkipAreaStatus
Auto Trait Implementations§
impl Freeze for SkipAreaStatus
impl RefUnwindSafe for SkipAreaStatus
impl Send for SkipAreaStatus
impl Sync for SkipAreaStatus
impl Unpin for SkipAreaStatus
impl UnwindSafe for SkipAreaStatus
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