#[non_exhaustive]pub struct ProcessorFeatures {
pub bank0: WHV_PROCESSOR_FEATURES,
pub bank1: WHV_PROCESSOR_FEATURES1,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.bank0: WHV_PROCESSOR_FEATURES
§bank1: WHV_PROCESSOR_FEATURES1
Trait Implementations§
Source§impl Clone for ProcessorFeatures
impl Clone for ProcessorFeatures
Source§fn clone(&self) -> ProcessorFeatures
fn clone(&self) -> ProcessorFeatures
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 ProcessorFeatures
impl Debug for ProcessorFeatures
Source§impl Default for ProcessorFeatures
impl Default for ProcessorFeatures
Source§fn default() -> ProcessorFeatures
fn default() -> ProcessorFeatures
Returns the “default value” for a type. Read more
Source§impl PartialEq for ProcessorFeatures
impl PartialEq for ProcessorFeatures
impl Copy for ProcessorFeatures
impl Eq for ProcessorFeatures
impl StructuralPartialEq for ProcessorFeatures
Auto Trait Implementations§
impl Freeze for ProcessorFeatures
impl RefUnwindSafe for ProcessorFeatures
impl Send for ProcessorFeatures
impl Sync for ProcessorFeatures
impl Unpin for ProcessorFeatures
impl UnwindSafe for ProcessorFeatures
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