pub struct TscSyncMitigations {
pub affinities: Vec<Option<Vec<usize>>>,
pub offsets: Vec<Option<u64>>,
}Fields§
§affinities: Vec<Option<Vec<usize>>>Vec of per-vcpu affinities to apply to each vcpu thread. If None, no affinity should be applied.
offsets: Vec<Option<u64>>Vec of TSC offsets to set on each vcpu. If None, no offset should be applied.
Implementations§
Trait Implementations§
Source§impl Debug for TscSyncMitigations
impl Debug for TscSyncMitigations
Source§impl Default for TscSyncMitigations
impl Default for TscSyncMitigations
Source§fn default() -> TscSyncMitigations
fn default() -> TscSyncMitigations
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TscSyncMitigations
impl RefUnwindSafe for TscSyncMitigations
impl Send for TscSyncMitigations
impl Sync for TscSyncMitigations
impl Unpin for TscSyncMitigations
impl UnwindSafe for TscSyncMitigations
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