pub struct ApiException {
pub exception: String,
pub doc: String,
pub display: String,
}
Fields§
§exception: String
A string representing the class of exception.
doc: String
Readable error message
display: String
TBD
Trait Implementations§
Source§impl Clone for ApiException
impl Clone for ApiException
Source§fn clone(&self) -> ApiException
fn clone(&self) -> ApiException
Returns a copy 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 ApiException
impl Debug for ApiException
Source§impl Default for ApiException
impl Default for ApiException
Source§fn default() -> ApiException
fn default() -> ApiException
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApiException
impl<'de> Deserialize<'de> for ApiException
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 ApiException
impl PartialEq for ApiException
Source§impl Serialize for ApiException
impl Serialize for ApiException
impl StructuralPartialEq for ApiException
Auto Trait Implementations§
impl Freeze for ApiException
impl RefUnwindSafe for ApiException
impl Send for ApiException
impl Sync for ApiException
impl Unpin for ApiException
impl UnwindSafe for ApiException
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