#[repr(C)]pub struct PrefetchMapPtr {
pub offset: u64,
pub entries: u32,
pub _pad: u32,
}Expand description
Inline hotset pointer for prefetch hint table.
Offset 0x088 in Level0Root.
Fields§
§offset: u64Byte offset to the prefetch hint table.
entries: u32Number of prefetch entries.
_pad: u32Padding to align to 16 bytes (matches other hotset pointers).
Trait Implementations§
Source§impl Clone for PrefetchMapPtr
impl Clone for PrefetchMapPtr
Source§fn clone(&self) -> PrefetchMapPtr
fn clone(&self) -> PrefetchMapPtr
Returns a duplicate 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 PrefetchMapPtr
impl Debug for PrefetchMapPtr
impl Copy for PrefetchMapPtr
Auto Trait Implementations§
impl Freeze for PrefetchMapPtr
impl RefUnwindSafe for PrefetchMapPtr
impl Send for PrefetchMapPtr
impl Sync for PrefetchMapPtr
impl Unpin for PrefetchMapPtr
impl UnwindSafe for PrefetchMapPtr
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