#[non_exhaustive]pub struct SyntheticProcessorFeatures {
pub bank0: WHV_SYNTHETIC_PROCESSOR_FEATURES,
}
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_SYNTHETIC_PROCESSOR_FEATURES
Trait Implementations§
Source§impl Clone for SyntheticProcessorFeatures
impl Clone for SyntheticProcessorFeatures
Source§fn clone(&self) -> SyntheticProcessorFeatures
fn clone(&self) -> SyntheticProcessorFeatures
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 SyntheticProcessorFeatures
impl Debug for SyntheticProcessorFeatures
Source§impl Default for SyntheticProcessorFeatures
impl Default for SyntheticProcessorFeatures
Source§fn default() -> SyntheticProcessorFeatures
fn default() -> SyntheticProcessorFeatures
Returns the “default value” for a type. Read more
impl Copy for SyntheticProcessorFeatures
impl Eq for SyntheticProcessorFeatures
impl StructuralPartialEq for SyntheticProcessorFeatures
Auto Trait Implementations§
impl Freeze for SyntheticProcessorFeatures
impl RefUnwindSafe for SyntheticProcessorFeatures
impl Send for SyntheticProcessorFeatures
impl Sync for SyntheticProcessorFeatures
impl Unpin for SyntheticProcessorFeatures
impl UnwindSafe for SyntheticProcessorFeatures
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