#[non_exhaustive]pub enum ArtifactError {
InvalidInput(String),
NotFound(String),
IdempotencyConflict(String),
MetadataConflict(String),
Integrity(String),
Expired(String),
Storage(String),
}Expand description
Typed artifact persistence or integrity failure.
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.
InvalidInput(String)
Caller supplied an invalid request.
NotFound(String)
Artifact identity was not found.
IdempotencyConflict(String)
One idempotency key was reused for different content.
MetadataConflict(String)
The same content address already exists with different immutable metadata.
Integrity(String)
Stored content no longer matches its integrity metadata.
Expired(String)
Artifact exists but is past its retention deadline.
Storage(String)
Backend storage failed.
Trait Implementations§
Source§impl Clone for ArtifactError
impl Clone for ArtifactError
Source§fn clone(&self) -> ArtifactError
fn clone(&self) -> ArtifactError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ArtifactError
impl Debug for ArtifactError
Source§impl Display for ArtifactError
impl Display for ArtifactError
impl Eq for ArtifactError
Source§impl Error for ArtifactError
impl Error for ArtifactError
1.30.0 · 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 PartialEq for ArtifactError
impl PartialEq for ArtifactError
impl StructuralPartialEq for ArtifactError
Auto Trait Implementations§
impl Freeze for ArtifactError
impl RefUnwindSafe for ArtifactError
impl Send for ArtifactError
impl Sync for ArtifactError
impl Unpin for ArtifactError
impl UnsafeUnpin for ArtifactError
impl UnwindSafe for ArtifactError
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