pub enum ContentCandidateStoreError {
Directory(Error),
Io(Error),
UnsafeEntry,
UnexpectedEntry,
CapacityExceeded(&'static str),
StoreLockPoisoned,
InvalidArchive(&'static str),
LimitExceeded(&'static str),
DigestMismatch,
Collision,
}Variants§
Directory(Error)
Io(Error)
UnsafeEntry
UnexpectedEntry
CapacityExceeded(&'static str)
StoreLockPoisoned
InvalidArchive(&'static str)
LimitExceeded(&'static str)
DigestMismatch
Collision
Trait Implementations§
Source§impl Debug for ContentCandidateStoreError
impl Debug for ContentCandidateStoreError
Source§impl Display for ContentCandidateStoreError
impl Display for ContentCandidateStoreError
Source§impl Error for ContentCandidateStoreError
impl Error for ContentCandidateStoreError
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()
Auto Trait Implementations§
impl !RefUnwindSafe for ContentCandidateStoreError
impl !UnwindSafe for ContentCandidateStoreError
impl Freeze for ContentCandidateStoreError
impl Send for ContentCandidateStoreError
impl Sync for ContentCandidateStoreError
impl Unpin for ContentCandidateStoreError
impl UnsafeUnpin for ContentCandidateStoreError
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