pub enum RegionInfoValue {
Segment(u32),
GlobalFlags(u32),
Size(usize),
AllocMaxSize(usize),
RuntimeAllocAllowed(bool),
Granule(usize),
Alignment(usize),
}Variants§
Segment(u32)
GlobalFlags(u32)
Size(usize)
AllocMaxSize(usize)
RuntimeAllocAllowed(bool)
Granule(usize)
Alignment(usize)
Trait Implementations§
Source§impl Clone for RegionInfoValue
impl Clone for RegionInfoValue
Source§fn clone(&self) -> RegionInfoValue
fn clone(&self) -> RegionInfoValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RegionInfoValue
impl Debug for RegionInfoValue
impl Eq for RegionInfoValue
Source§impl PartialEq for RegionInfoValue
impl PartialEq for RegionInfoValue
impl StructuralPartialEq for RegionInfoValue
Auto Trait Implementations§
impl Freeze for RegionInfoValue
impl RefUnwindSafe for RegionInfoValue
impl Send for RegionInfoValue
impl Sync for RegionInfoValue
impl Unpin for RegionInfoValue
impl UnsafeUnpin for RegionInfoValue
impl UnwindSafe for RegionInfoValue
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