Enum gfx_hal::pso::AllocationError [−][src]
pub enum AllocationError { OutOfMemory(OutOfMemory), OutOfPoolMemory, FragmentedPool, IncompatibleLayout, }
An error allocating descriptor sets from a pool.
Variants
OutOfMemory(OutOfMemory)
OutOfMemory::Host: Memory allocation on the host side failed. OutOfMemory::Device: Memory allocation on the device side failed. This could be caused by a lack of memory or pool fragmentation.
Memory allocation failed as there is not enough in the pool. This could be caused by too many descriptor sets being created.
Memory allocation failed due to pool fragmentation.
Descriptor set allocation failed as the layout is incompatible with the pool.
Trait Implementations
impl Clone for AllocationError
[src]
impl Clone for AllocationError
[src]fn clone(&self) -> AllocationError
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Error for AllocationError
[src]
impl Error for AllocationError
[src]impl From<OutOfMemory> for AllocationError
[src]
impl From<OutOfMemory> for AllocationError
[src]fn from(source: OutOfMemory) -> Self
[src]
impl PartialEq<AllocationError> for AllocationError
[src]
impl PartialEq<AllocationError> for AllocationError
[src]fn eq(&self, other: &AllocationError) -> bool
[src]
fn ne(&self, other: &AllocationError) -> bool
[src]
impl StructuralPartialEq for AllocationError
[src]
impl StructuralPartialEq for AllocationError
[src]Auto Trait Implementations
impl RefUnwindSafe for AllocationError
impl RefUnwindSafe for AllocationError
impl Send for AllocationError
impl Send for AllocationError
impl Sync for AllocationError
impl Sync for AllocationError
impl Unpin for AllocationError
impl Unpin for AllocationError
impl UnwindSafe for AllocationError
impl UnwindSafe for AllocationError