pub struct GuestCrashCtl(/* private fields */);
Expand description
The contents of HV_X64_MSR_GUEST_CRASH_CTL
Implementations§
Source§impl GuestCrashCtl
impl GuestCrashCtl
Sourcepub const fn with_pre_os_id_checked(self, value: u8) -> Result<Self, ()>
pub const fn with_pre_os_id_checked(self, value: u8) -> Result<Self, ()>
Bits: 58..61
Sourcepub const fn with_pre_os_id(self, value: u8) -> Self
pub const fn with_pre_os_id(self, value: u8) -> Self
Bits: 58..61
Sourcepub const fn set_pre_os_id(&mut self, value: u8)
pub const fn set_pre_os_id(&mut self, value: u8)
Bits: 58..61
Sourcepub const fn no_crash_dump(&self) -> bool
pub const fn no_crash_dump(&self) -> bool
Bits: 61..62
Sourcepub const fn with_no_crash_dump_checked(self, value: bool) -> Result<Self, ()>
pub const fn with_no_crash_dump_checked(self, value: bool) -> Result<Self, ()>
Bits: 61..62
Sourcepub const fn with_no_crash_dump(self, value: bool) -> Self
pub const fn with_no_crash_dump(self, value: bool) -> Self
Bits: 61..62
Sourcepub const fn set_no_crash_dump(&mut self, value: bool)
pub const fn set_no_crash_dump(&mut self, value: bool)
Bits: 61..62
Sourcepub const fn crash_message(&self) -> bool
pub const fn crash_message(&self) -> bool
Bits: 62..63
Sourcepub const fn with_crash_message_checked(self, value: bool) -> Result<Self, ()>
pub const fn with_crash_message_checked(self, value: bool) -> Result<Self, ()>
Bits: 62..63
Sourcepub const fn with_crash_message(self, value: bool) -> Self
pub const fn with_crash_message(self, value: bool) -> Self
Bits: 62..63
Sourcepub const fn set_crash_message(&mut self, value: bool)
pub const fn set_crash_message(&mut self, value: bool)
Bits: 62..63
Sourcepub const fn crash_notify(&self) -> bool
pub const fn crash_notify(&self) -> bool
Bits: 63..64
Sourcepub const fn with_crash_notify_checked(self, value: bool) -> Result<Self, ()>
pub const fn with_crash_notify_checked(self, value: bool) -> Result<Self, ()>
Bits: 63..64
Sourcepub const fn with_crash_notify(self, value: bool) -> Self
pub const fn with_crash_notify(self, value: bool) -> Self
Bits: 63..64
Sourcepub const fn set_crash_notify(&mut self, value: bool)
pub const fn set_crash_notify(&mut self, value: bool)
Bits: 63..64
Trait Implementations§
Source§impl Clone for GuestCrashCtl
impl Clone for GuestCrashCtl
Source§fn clone(&self) -> GuestCrashCtl
fn clone(&self) -> GuestCrashCtl
Returns a copy 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 GuestCrashCtl
impl Debug for GuestCrashCtl
Source§impl Default for GuestCrashCtl
impl Default for GuestCrashCtl
Source§impl From<GuestCrashCtl> for u64
impl From<GuestCrashCtl> for u64
Source§fn from(v: GuestCrashCtl) -> u64
fn from(v: GuestCrashCtl) -> u64
Converts to this type from the input type.
Source§impl From<u64> for GuestCrashCtl
impl From<u64> for GuestCrashCtl
impl Copy for GuestCrashCtl
Auto Trait Implementations§
impl Freeze for GuestCrashCtl
impl RefUnwindSafe for GuestCrashCtl
impl Send for GuestCrashCtl
impl Sync for GuestCrashCtl
impl Unpin for GuestCrashCtl
impl UnwindSafe for GuestCrashCtl
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