pub enum AllocationPhase {
Mmio32,
Ram,
Mmio64,
PostMmio,
}Expand description
Allocation phase reported in AllocateError::Exhausted.
Variants§
Mmio32
32-bit MMIO placement.
Ram
RAM placement.
Mmio64
64-bit MMIO placement.
PostMmio
Post-MMIO placement.
Trait Implementations§
Source§impl Clone for AllocationPhase
impl Clone for AllocationPhase
Source§fn clone(&self) -> AllocationPhase
fn clone(&self) -> AllocationPhase
Returns a duplicate of the value. Read more
1.0.0 · 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 AllocationPhase
impl Debug for AllocationPhase
Source§impl PartialEq for AllocationPhase
impl PartialEq for AllocationPhase
impl Copy for AllocationPhase
impl Eq for AllocationPhase
impl StructuralPartialEq for AllocationPhase
Auto Trait Implementations§
impl Freeze for AllocationPhase
impl RefUnwindSafe for AllocationPhase
impl Send for AllocationPhase
impl Sync for AllocationPhase
impl Unpin for AllocationPhase
impl UnsafeUnpin for AllocationPhase
impl UnwindSafe for AllocationPhase
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