pub struct HEAP_SIZE(/* private fields */);
Available on crate feature
kernel
only.Expand description
HHEAP::HeapSize
and
HHEAP::HeapCompact
options
(u32
).
Originally has HEAP
prefix.
This is a bitflag constant.
Implementations§
Source§impl HEAP_SIZE
impl HEAP_SIZE
Sourcepub const unsafe fn as_mut(&mut self) -> &mut u32
pub const unsafe fn as_mut(&mut self) -> &mut u32
Returns a mutable reference to the underlying raw value.
§Safety
Be sure the integer being set is meaningful for the actual type.
Sourcepub const unsafe fn from_raw(v: u32) -> Self
pub const unsafe fn from_raw(v: u32) -> Self
Constructs a new object by wrapping the given integer value.
§Safety
Be sure the given value is meaningful for the actual type.
Sourcepub const fn raw(&self) -> u32
pub const fn raw(&self) -> u32
Returns the primitive integer underlying value.
This method is similar to Into
, but it
is const
, therefore it can be used in
const contexts.
Source§impl HEAP_SIZE
impl HEAP_SIZE
pub const NO_SERIALIZE: Self
Trait Implementations§
Source§impl BitAndAssign for HEAP_SIZE
impl BitAndAssign for HEAP_SIZE
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moreSource§impl BitOrAssign for HEAP_SIZE
impl BitOrAssign for HEAP_SIZE
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreSource§impl BitXorAssign for HEAP_SIZE
impl BitXorAssign for HEAP_SIZE
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moreSource§impl Ord for HEAP_SIZE
impl Ord for HEAP_SIZE
Source§impl PartialOrd for HEAP_SIZE
impl PartialOrd for HEAP_SIZE
impl Copy for HEAP_SIZE
impl Eq for HEAP_SIZE
impl StructuralPartialEq for HEAP_SIZE
Auto Trait Implementations§
impl Freeze for HEAP_SIZE
impl RefUnwindSafe for HEAP_SIZE
impl Send for HEAP_SIZE
impl Sync for HEAP_SIZE
impl Unpin for HEAP_SIZE
impl UnwindSafe for HEAP_SIZE
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