#[non_exhaustive]pub enum FirestoreErrorKind {
Show 17 variants
Cancelled,
Unknown,
InvalidArgument,
DeadlineExceeded,
NotFound,
AlreadyExists,
PermissionDenied,
ResourceExhausted,
FailedPrecondition,
Aborted,
OutOfRange,
Unimplemented,
Internal,
Unavailable,
DataLoss,
Unauthenticated,
Other(String),
}
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.
Cancelled
Unknown
InvalidArgument
DeadlineExceeded
NotFound
AlreadyExists
PermissionDenied
ResourceExhausted
FailedPrecondition
Aborted
OutOfRange
Unimplemented
Internal
DataLoss
Unauthenticated
Other(String)
Trait Implementations§
Source§impl Clone for FirestoreErrorKind
impl Clone for FirestoreErrorKind
Source§fn clone(&self) -> FirestoreErrorKind
fn clone(&self) -> FirestoreErrorKind
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 FirestoreErrorKind
impl Debug for FirestoreErrorKind
Source§impl FromStr for FirestoreErrorKind
impl FromStr for FirestoreErrorKind
Auto Trait Implementations§
impl Freeze for FirestoreErrorKind
impl RefUnwindSafe for FirestoreErrorKind
impl Send for FirestoreErrorKind
impl Sync for FirestoreErrorKind
impl Unpin for FirestoreErrorKind
impl UnwindSafe for FirestoreErrorKind
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