#[non_exhaustive]#[repr(u8)]pub enum Zs {
NotWp = 0,
Empty = 1,
Iopen = 2,
Eopen = 3,
Closed = 4,
Rdonly = 13,
Full = 14,
Offline = 15,
}Expand description
A zone state.
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.
Trait Implementations§
impl Copy for Zs
impl Eq for Zs
impl StructuralPartialEq for Zs
Auto Trait Implementations§
impl Freeze for Zs
impl RefUnwindSafe for Zs
impl Send for Zs
impl Sync for Zs
impl Unpin for Zs
impl UnsafeUnpin for Zs
impl UnwindSafe for Zs
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