Skip to main content

MemoryAdviseState

Struct MemoryAdviseState 

Source
pub struct MemoryAdviseState { /* private fields */ }
Expand description

Accumulates memory-advise hints for a single USM range.

Applying a set hint records it; applying the matching clear hint removes it. BiasCached / BiasUncached are mutually exclusive — the most recent wins. This lets a planner fold a sequence of advise calls into the minimal effective set before touching the driver.

Implementations§

Source§

impl MemoryAdviseState

Source

pub fn new() -> Self

A fresh state with no advice applied.

Source

pub fn apply(&mut self, advice: MemoryAdvice)

Apply one advice hint, folding it into the effective state.

Source

pub fn is_read_mostly(&self) -> bool

true when SetReadMostly is currently in effect.

Source

pub fn is_preferred_location(&self) -> bool

true when the range is pinned to its preferred device location.

Source

pub fn is_accessed_by_device(&self) -> bool

true when the device is marked as an accessor of this range.

Source

pub fn cache_bias(&self) -> Option<bool>

The cache bias: Some(true) cached, Some(false) uncached, None driver-default.

Source

pub fn effective_advice(&self) -> Vec<MemoryAdvice>

The minimal sequence of advise calls that reproduces this state from a freshly-allocated range. Used to replay folded hints to the driver.

Trait Implementations§

Source§

impl Clone for MemoryAdviseState

Source§

fn clone(&self) -> MemoryAdviseState

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for MemoryAdviseState

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for MemoryAdviseState

Source§

fn default() -> MemoryAdviseState

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more