#[non_exhaustive]pub enum TransitionResourcesError {
Device(DeviceError),
Encoder(CommandEncoderError),
InvalidResource(InvalidResourceError),
ResourceUsage(ResourceUsageCompatibilityError),
}
Expand description
Error encountered while attempting to perform Global::command_encoder_transition_resources
.
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.
Device(DeviceError)
Encoder(CommandEncoderError)
InvalidResource(InvalidResourceError)
ResourceUsage(ResourceUsageCompatibilityError)
Trait Implementations§
source§impl Clone for TransitionResourcesError
impl Clone for TransitionResourcesError
source§fn clone(&self) -> TransitionResourcesError
fn clone(&self) -> TransitionResourcesError
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 TransitionResourcesError
impl Debug for TransitionResourcesError
source§impl Display for TransitionResourcesError
impl Display for TransitionResourcesError
source§impl Error for TransitionResourcesError
impl Error for TransitionResourcesError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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<CommandEncoderError> for TransitionResourcesError
impl From<CommandEncoderError> for TransitionResourcesError
source§fn from(source: CommandEncoderError) -> Self
fn from(source: CommandEncoderError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for TransitionResourcesError
impl From<DeviceError> for TransitionResourcesError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
source§impl From<InvalidResourceError> for TransitionResourcesError
impl From<InvalidResourceError> for TransitionResourcesError
source§fn from(source: InvalidResourceError) -> Self
fn from(source: InvalidResourceError) -> Self
Converts to this type from the input type.
source§impl From<ResourceUsageCompatibilityError> for TransitionResourcesError
impl From<ResourceUsageCompatibilityError> for TransitionResourcesError
source§fn from(source: ResourceUsageCompatibilityError) -> Self
fn from(source: ResourceUsageCompatibilityError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TransitionResourcesError
impl RefUnwindSafe for TransitionResourcesError
impl Send for TransitionResourcesError
impl Sync for TransitionResourcesError
impl Unpin for TransitionResourcesError
impl UnwindSafe for TransitionResourcesError
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)