pub struct NotFoundApiError {
pub name: String,
pub message: String,
pub url: String,
}
Fields§
§name: String
§message: String
§url: String
Implementations§
Trait Implementations§
Source§impl Clone for NotFoundApiError
impl Clone for NotFoundApiError
Source§fn clone(&self) -> NotFoundApiError
fn clone(&self) -> NotFoundApiError
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 NotFoundApiError
impl Debug for NotFoundApiError
Source§impl Default for NotFoundApiError
impl Default for NotFoundApiError
Source§fn default() -> NotFoundApiError
fn default() -> NotFoundApiError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotFoundApiError
impl<'de> Deserialize<'de> for NotFoundApiError
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
Source§impl PartialEq for NotFoundApiError
impl PartialEq for NotFoundApiError
Source§impl Serialize for NotFoundApiError
impl Serialize for NotFoundApiError
impl StructuralPartialEq for NotFoundApiError
Auto Trait Implementations§
impl Freeze for NotFoundApiError
impl RefUnwindSafe for NotFoundApiError
impl Send for NotFoundApiError
impl Sync for NotFoundApiError
impl Unpin for NotFoundApiError
impl UnwindSafe for NotFoundApiError
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