pub enum ProviderErrorCode {
InvalidRequest,
NotFound,
Network,
Timeout,
Server,
PermissionDenied,
Internal,
}Expand description
Error type for provider operations.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ProviderErrorCode
impl Clone for ProviderErrorCode
Source§fn clone(&self) -> ProviderErrorCode
fn clone(&self) -> ProviderErrorCode
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 ProviderErrorCode
impl Debug for ProviderErrorCode
Source§impl PartialEq for ProviderErrorCode
impl PartialEq for ProviderErrorCode
impl Copy for ProviderErrorCode
impl Eq for ProviderErrorCode
impl StructuralPartialEq for ProviderErrorCode
Auto Trait Implementations§
impl Freeze for ProviderErrorCode
impl RefUnwindSafe for ProviderErrorCode
impl Send for ProviderErrorCode
impl Sync for ProviderErrorCode
impl Unpin for ProviderErrorCode
impl UnsafeUnpin for ProviderErrorCode
impl UnwindSafe for ProviderErrorCode
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