Enum firebase_wasm::firestore::TransactionError
source · pub enum TransactionError {
Firestore(FirestoreError),
Custom(JsValue),
}
Variants
Firestore(FirestoreError)
Custom(JsValue)
Trait Implementations
sourceimpl Clone for TransactionError
impl Clone for TransactionError
sourcefn clone(&self) -> TransactionError
fn clone(&self) -> TransactionError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for TransactionError
impl Debug for TransactionError
sourceimpl Display for TransactionError
impl Display for TransactionError
sourceimpl Error for TransactionError
impl Error for TransactionError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<FirestoreError> for TransactionError
impl From<FirestoreError> for TransactionError
sourcefn from(source: FirestoreError) -> Self
fn from(source: FirestoreError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for TransactionError
impl !Send for TransactionError
impl !Sync for TransactionError
impl Unpin for TransactionError
impl UnwindSafe for TransactionError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more