pub enum ValidateAsActionsError {
DestroyedResource(DestroyedResourceError),
UsedUnbuiltTlas(ResourceErrorIdent),
UsedUnbuiltBlas(ResourceErrorIdent, ResourceErrorIdent),
BlasNewerThenTlas(ResourceErrorIdent, ResourceErrorIdent),
}
Variants§
DestroyedResource(DestroyedResourceError)
UsedUnbuiltTlas(ResourceErrorIdent)
UsedUnbuiltBlas(ResourceErrorIdent, ResourceErrorIdent)
BlasNewerThenTlas(ResourceErrorIdent, ResourceErrorIdent)
Trait Implementations§
Source§impl Clone for ValidateAsActionsError
impl Clone for ValidateAsActionsError
Source§fn clone(&self) -> ValidateAsActionsError
fn clone(&self) -> ValidateAsActionsError
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 ValidateAsActionsError
impl Debug for ValidateAsActionsError
Source§impl Display for ValidateAsActionsError
impl Display for ValidateAsActionsError
Source§impl Error for ValidateAsActionsError
impl Error for ValidateAsActionsError
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<DestroyedResourceError> for ValidateAsActionsError
impl From<DestroyedResourceError> for ValidateAsActionsError
Source§fn from(source: DestroyedResourceError) -> Self
fn from(source: DestroyedResourceError) -> Self
Converts to this type from the input type.
Source§impl From<ValidateAsActionsError> for QueueSubmitError
impl From<ValidateAsActionsError> for QueueSubmitError
Source§fn from(source: ValidateAsActionsError) -> Self
fn from(source: ValidateAsActionsError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ValidateAsActionsError
impl RefUnwindSafe for ValidateAsActionsError
impl Send for ValidateAsActionsError
impl Sync for ValidateAsActionsError
impl Unpin for ValidateAsActionsError
impl UnwindSafe for ValidateAsActionsError
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