pub enum CreationError {
Other,
InvalidSubpass(usize),
Shader(ShaderError),
OutOfMemory(OutOfMemory),
}
Expand description
Error types happening upon PSO creation on the device side.
Variants§
Other
Unknown other error.
InvalidSubpass(usize)
Invalid subpass (not part of renderpass).
Shader(ShaderError)
Shader compilation error.
OutOfMemory(OutOfMemory)
Out of either host or device memory.
Trait Implementations§
Source§impl Clone for CreationError
impl Clone for CreationError
Source§fn clone(&self) -> CreationError
fn clone(&self) -> CreationError
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 CreationError
impl Debug for CreationError
Source§impl Display for CreationError
impl Display for CreationError
Source§impl From<OutOfMemory> for CreationError
impl From<OutOfMemory> for CreationError
Source§fn from(err: OutOfMemory) -> CreationError
fn from(err: OutOfMemory) -> CreationError
Converts to this type from the input type.
Source§impl PartialEq for CreationError
impl PartialEq for CreationError
impl StructuralPartialEq for CreationError
Auto Trait Implementations§
impl Freeze for CreationError
impl RefUnwindSafe for CreationError
impl Send for CreationError
impl Sync for CreationError
impl Unpin for CreationError
impl UnwindSafe for CreationError
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