pub struct FireBaseAPIError {
pub code: u16,
pub message: String,
pub errors: Vec<FireBaseAPIErrorDetail>,
}Fields§
§code: u16§message: String§errors: Vec<FireBaseAPIErrorDetail>Trait Implementations§
Source§impl Clone for FireBaseAPIError
impl Clone for FireBaseAPIError
Source§fn clone(&self) -> FireBaseAPIError
fn clone(&self) -> FireBaseAPIError
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 FireBaseAPIError
impl Debug for FireBaseAPIError
Source§impl<'de> Deserialize<'de> for FireBaseAPIError
impl<'de> Deserialize<'de> for FireBaseAPIError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FireBaseAPIError
impl RefUnwindSafe for FireBaseAPIError
impl Send for FireBaseAPIError
impl Sync for FireBaseAPIError
impl Unpin for FireBaseAPIError
impl UnwindSafe for FireBaseAPIError
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