pub enum PoolInfoValue {
Segment(u32),
GlobalFlags(u32),
Size(usize),
RuntimeAllocAllowed(bool),
Granule(usize),
Alignment(usize),
AccessibleByAll(bool),
AllocMaxSize(usize),
Location(u32),
RecGranule(usize),
}Variants§
Segment(u32)
GlobalFlags(u32)
Size(usize)
RuntimeAllocAllowed(bool)
Granule(usize)
Alignment(usize)
AccessibleByAll(bool)
AllocMaxSize(usize)
Location(u32)
RecGranule(usize)
Trait Implementations§
Source§impl Clone for PoolInfoValue
impl Clone for PoolInfoValue
Source§fn clone(&self) -> PoolInfoValue
fn clone(&self) -> PoolInfoValue
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 PoolInfoValue
impl Debug for PoolInfoValue
impl Eq for PoolInfoValue
Source§impl PartialEq for PoolInfoValue
impl PartialEq for PoolInfoValue
impl StructuralPartialEq for PoolInfoValue
Auto Trait Implementations§
impl Freeze for PoolInfoValue
impl RefUnwindSafe for PoolInfoValue
impl Send for PoolInfoValue
impl Sync for PoolInfoValue
impl Unpin for PoolInfoValue
impl UnsafeUnpin for PoolInfoValue
impl UnwindSafe for PoolInfoValue
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