pub struct HttpResponseError {
pub group: String,
pub code: String,
pub message: String,
pub metadata: Option<Cbor>,
}Fields§
§group: String§code: String§message: String§metadata: Option<Cbor>Trait Implementations§
Source§impl Clone for HttpResponseError
impl Clone for HttpResponseError
Source§fn clone(&self) -> HttpResponseError
fn clone(&self) -> HttpResponseError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HttpResponseError
impl Debug for HttpResponseError
Source§impl<'de> Deserialize<'de> for HttpResponseError
impl<'de> Deserialize<'de> for HttpResponseError
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
impl Eq for HttpResponseError
Source§impl From<HttpResponseError> for HttpResponseError
impl From<HttpResponseError> for HttpResponseError
Source§fn from(value: HttpResponseError) -> Self
fn from(value: HttpResponseError) -> Self
Converts to this type from the input type.
Source§impl From<HttpResponseError> for HttpResponseError
impl From<HttpResponseError> for HttpResponseError
Source§fn from(value: HttpResponseError) -> Self
fn from(value: HttpResponseError) -> Self
Converts to this type from the input type.
Source§impl From<HttpResponseError> for HttpResponseError
impl From<HttpResponseError> for HttpResponseError
Source§fn from(value: HttpResponseError) -> Self
fn from(value: HttpResponseError) -> Self
Converts to this type from the input type.
Source§impl From<HttpResponseError> for HttpResponseError
impl From<HttpResponseError> for HttpResponseError
Source§fn from(value: HttpResponseError) -> Self
fn from(value: HttpResponseError) -> Self
Converts to this type from the input type.
Source§impl Hash for HttpResponseError
impl Hash for HttpResponseError
Source§impl PartialEq for HttpResponseError
impl PartialEq for HttpResponseError
Source§fn eq(&self, other: &HttpResponseError) -> bool
fn eq(&self, other: &HttpResponseError) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HttpResponseError
impl Serialize for HttpResponseError
impl StructuralPartialEq for HttpResponseError
Auto Trait Implementations§
impl Freeze for HttpResponseError
impl RefUnwindSafe for HttpResponseError
impl Send for HttpResponseError
impl Sync for HttpResponseError
impl Unpin for HttpResponseError
impl UnsafeUnpin for HttpResponseError
impl UnwindSafe for HttpResponseError
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