#[non_exhaustive]pub enum RenderPassCompatibilityError {
IncompatibleColorAttachment {
indices: Vec<usize>,
expected: Vec<Option<TextureFormat>>,
actual: Vec<Option<TextureFormat>>,
ty: RenderPassCompatibilityCheckType,
},
IncompatibleDepthStencilAttachment {
expected: Option<TextureFormat>,
actual: Option<TextureFormat>,
ty: RenderPassCompatibilityCheckType,
},
IncompatibleSampleCount {
expected: u32,
actual: u32,
ty: RenderPassCompatibilityCheckType,
},
IncompatibleMultiview {
expected: Option<NonZeroU32>,
actual: Option<NonZeroU32>,
ty: RenderPassCompatibilityCheckType,
},
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
IncompatibleColorAttachment
IncompatibleDepthStencilAttachment
IncompatibleSampleCount
IncompatibleMultiview
Trait Implementations§
source§impl Clone for RenderPassCompatibilityError
impl Clone for RenderPassCompatibilityError
source§fn clone(&self) -> RenderPassCompatibilityError
fn clone(&self) -> RenderPassCompatibilityError
Returns a copy 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 RenderPassCompatibilityError
impl Debug for RenderPassCompatibilityError
source§impl Error for RenderPassCompatibilityError
impl Error for RenderPassCompatibilityError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<RenderPassCompatibilityError> for RenderCommandError
impl From<RenderPassCompatibilityError> for RenderCommandError
source§fn from(source: RenderPassCompatibilityError) -> Self
fn from(source: RenderPassCompatibilityError) -> Self
Converts to this type from the input type.
source§impl From<RenderPassCompatibilityError> for RenderPassErrorInner
impl From<RenderPassCompatibilityError> for RenderPassErrorInner
source§fn from(source: RenderPassCompatibilityError) -> Self
fn from(source: RenderPassCompatibilityError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RenderPassCompatibilityError
impl RefUnwindSafe for RenderPassCompatibilityError
impl Send for RenderPassCompatibilityError
impl Sync for RenderPassCompatibilityError
impl Unpin for RenderPassCompatibilityError
impl UnwindSafe for RenderPassCompatibilityError
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