pub struct RtdbError {
pub inner: String,
}
Expand description
Custom error type for Firebase RTDB operations.
Encapsulates various error conditions that can occur during database operations, including network errors, authentication failures, and invalid data.
All errors are converted to a string representation for simplified error handling while maintaining the original error context.
Fields§
§inner: String
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RtdbError
impl RefUnwindSafe for RtdbError
impl Send for RtdbError
impl Sync for RtdbError
impl Unpin for RtdbError
impl UnwindSafe for RtdbError
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