pub struct APINotFound {
pub errors: Option<Vec<String>>,
pub message: Option<String>,
pub url: Option<String>,
}Fields§
§errors: Option<Vec<String>>§message: Option<String>§url: Option<String>Trait Implementations§
Source§impl Clone for APINotFound
impl Clone for APINotFound
Source§fn clone(&self) -> APINotFound
fn clone(&self) -> APINotFound
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 APINotFound
impl Debug for APINotFound
Source§impl<'de> Deserialize<'de> for APINotFound
impl<'de> Deserialize<'de> for APINotFound
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 APINotFound
impl PartialEq for APINotFound
Source§impl Serialize for APINotFound
impl Serialize for APINotFound
impl StructuralPartialEq for APINotFound
Auto Trait Implementations§
impl Freeze for APINotFound
impl RefUnwindSafe for APINotFound
impl Send for APINotFound
impl Sync for APINotFound
impl Unpin for APINotFound
impl UnwindSafe for APINotFound
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