pub enum CapabilityErrorKind {
Authentication,
RateLimit,
InvalidInput,
UnsupportedModality,
Network,
ProviderError,
StoreError,
NotFound,
Timeout,
}Expand description
Kind of capability error.
Variants§
Authentication
Authentication failed.
RateLimit
Rate limit exceeded.
InvalidInput
Invalid input.
UnsupportedModality
Unsupported modality.
Network
Network error.
ProviderError
Provider returned an error.
StoreError
Store operation failed.
NotFound
Resource not found.
Timeout
Operation timed out.
Trait Implementations§
Source§impl Clone for CapabilityErrorKind
impl Clone for CapabilityErrorKind
Source§fn clone(&self) -> CapabilityErrorKind
fn clone(&self) -> CapabilityErrorKind
Returns a duplicate 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 CapabilityErrorKind
impl Debug for CapabilityErrorKind
Source§impl PartialEq for CapabilityErrorKind
impl PartialEq for CapabilityErrorKind
impl Copy for CapabilityErrorKind
impl Eq for CapabilityErrorKind
impl StructuralPartialEq for CapabilityErrorKind
Auto Trait Implementations§
impl Freeze for CapabilityErrorKind
impl RefUnwindSafe for CapabilityErrorKind
impl Send for CapabilityErrorKind
impl Sync for CapabilityErrorKind
impl Unpin for CapabilityErrorKind
impl UnwindSafe for CapabilityErrorKind
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