#[repr(i32)]pub enum DarraKernelStatus {
Ok = 0,
NotInstalled = 1,
Stopped = 2,
AccessDenied = 3,
SignatureFail = 4,
Blocked = 5,
DeviceMissing = 6,
Disabled = 7,
UnknownError = 99,
}Variants§
Ok = 0
NotInstalled = 1
Stopped = 2
AccessDenied = 3
SignatureFail = 4
Blocked = 5
DeviceMissing = 6
Disabled = 7
UnknownError = 99
Implementations§
Trait Implementations§
Source§impl Clone for DarraKernelStatus
impl Clone for DarraKernelStatus
Source§fn clone(&self) -> DarraKernelStatus
fn clone(&self) -> DarraKernelStatus
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 moreimpl Copy for DarraKernelStatus
Source§impl Debug for DarraKernelStatus
impl Debug for DarraKernelStatus
Source§impl Display for DarraKernelStatus
impl Display for DarraKernelStatus
impl Eq for DarraKernelStatus
Source§impl Hash for DarraKernelStatus
impl Hash for DarraKernelStatus
Source§impl PartialEq for DarraKernelStatus
impl PartialEq for DarraKernelStatus
Source§fn eq(&self, other: &DarraKernelStatus) -> bool
fn eq(&self, other: &DarraKernelStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DarraKernelStatus
Auto Trait Implementations§
impl Freeze for DarraKernelStatus
impl RefUnwindSafe for DarraKernelStatus
impl Send for DarraKernelStatus
impl Sync for DarraKernelStatus
impl Unpin for DarraKernelStatus
impl UnsafeUnpin for DarraKernelStatus
impl UnwindSafe for DarraKernelStatus
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