#[non_exhaustive]#[repr(u8)]pub enum S {
Ok = 0,
Ioerr = 1,
Unsupp = 2,
ZoneInvalidCmd = 3,
ZoneUnalignedWp = 4,
ZoneOpenResource = 5,
ZoneActiveResource = 6,
}Expand description
A status byte.
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.
Ok = 0
Ioerr = 1
Unsupp = 2
ZoneInvalidCmd = 3
ZoneUnalignedWp = 4
ZoneOpenResource = 5
ZoneActiveResource = 6
Trait Implementations§
impl Copy for S
impl Eq for S
impl StructuralPartialEq for S
Auto Trait Implementations§
impl Freeze for S
impl RefUnwindSafe for S
impl Send for S
impl Sync for S
impl Unpin for S
impl UnsafeUnpin for S
impl UnwindSafe for S
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