#[non_exhaustive]pub struct MemoryDeviceProperties {
pub max_page_size: u64,
pub alignment: u64,
/* private fields */
}Expand description
Properties of the device related to allocation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.max_page_size: u64The maximum nr. of bytes that can be allocated in one go.
alignment: u64The required memory offset alignment in bytes.
Implementations§
Source§impl MemoryDeviceProperties
impl MemoryDeviceProperties
Sourcepub const fn new(max_page_size: u64, alignment: u64) -> Self
pub const fn new(max_page_size: u64, alignment: u64) -> Self
Properties that state no capacity. A runtime that can read one adds it
with with_max_memory.
Sourcepub const fn max_memory(&self) -> Option<u64>
pub const fn max_memory(&self) -> Option<u64>
How many bytes this memory may be asked to hold at once, or None,
never Some(0), where the runtime has no figure.
This sizes a whole workload, while
max_page_size bounds a single allocation and
is often derived from it. It is a budget, not a hardware census: each
runtime reports the largest figure its own API stands behind, and
staying under it is what keeps the device off its paging path.
A runtime with no figure leaves it None rather than guess, because a
guess reads as a measurement to every caller downstream.
Sourcepub const fn with_max_memory(self, max_memory: u64) -> Self
pub const fn with_max_memory(self, max_memory: u64) -> Self
States the capacity, as set_max_memory does.
Sourcepub const fn set_max_memory(&mut self, max_memory: u64)
pub const fn set_max_memory(&mut self, max_memory: u64)
States the capacity, dropping a zero: an API with nothing to report
reports 0, and max_memory says that as None.
Trait Implementations§
Source§impl Clone for MemoryDeviceProperties
impl Clone for MemoryDeviceProperties
Source§impl Debug for MemoryDeviceProperties
impl Debug for MemoryDeviceProperties
impl Eq for MemoryDeviceProperties
Source§impl Hash for MemoryDeviceProperties
impl Hash for MemoryDeviceProperties
Source§impl PartialEq for MemoryDeviceProperties
impl PartialEq for MemoryDeviceProperties
impl StructuralPartialEq for MemoryDeviceProperties
Auto Trait Implementations§
impl Freeze for MemoryDeviceProperties
impl RefUnwindSafe for MemoryDeviceProperties
impl Send for MemoryDeviceProperties
impl Sync for MemoryDeviceProperties
impl Unpin for MemoryDeviceProperties
impl UnsafeUnpin for MemoryDeviceProperties
impl UnwindSafe for MemoryDeviceProperties
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more