#[non_exhaustive]pub enum PipelineCacheValidationError {
Truncated,
Extended,
Corrupted,
Outdated,
DeviceMismatch,
Unsupported,
}
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.
Implementations§
source§impl PipelineCacheValidationError
impl PipelineCacheValidationError
sourcepub fn was_avoidable(&self) -> bool
pub fn was_avoidable(&self) -> bool
Could the error have been avoided? That is, is there a mistake in user code interacting with the cache
Trait Implementations§
source§impl Clone for PipelineCacheValidationError
impl Clone for PipelineCacheValidationError
source§fn clone(&self) -> PipelineCacheValidationError
fn clone(&self) -> PipelineCacheValidationError
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 PipelineCacheValidationError
impl Debug for PipelineCacheValidationError
source§impl Error for PipelineCacheValidationError
impl Error for PipelineCacheValidationError
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<PipelineCacheValidationError> for CreatePipelineCacheError
impl From<PipelineCacheValidationError> for CreatePipelineCacheError
source§fn from(source: PipelineCacheValidationError) -> Self
fn from(source: PipelineCacheValidationError) -> Self
Converts to this type from the input type.
source§impl PartialEq for PipelineCacheValidationError
impl PartialEq for PipelineCacheValidationError
source§fn eq(&self, other: &PipelineCacheValidationError) -> bool
fn eq(&self, other: &PipelineCacheValidationError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for PipelineCacheValidationError
impl StructuralPartialEq for PipelineCacheValidationError
Auto Trait Implementations§
impl Freeze for PipelineCacheValidationError
impl RefUnwindSafe for PipelineCacheValidationError
impl Send for PipelineCacheValidationError
impl Sync for PipelineCacheValidationError
impl Unpin for PipelineCacheValidationError
impl UnwindSafe for PipelineCacheValidationError
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.