pub struct RuntimeErrorWire {
pub code: RuntimeErrorCode,
pub http_status: Option<u16>,
pub message: String,
pub remote_code: Option<String>,
pub remote_body: Option<Vec<u8>>,
}Fields§
§code: RuntimeErrorCode§http_status: Option<u16>§message: String§remote_code: Option<String>§remote_body: Option<Vec<u8>>Trait Implementations§
Source§impl Clone for RuntimeErrorWire
impl Clone for RuntimeErrorWire
Source§fn clone(&self) -> RuntimeErrorWire
fn clone(&self) -> RuntimeErrorWire
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 RuntimeErrorWire
impl Debug for RuntimeErrorWire
Source§impl<'de> Deserialize<'de> for RuntimeErrorWire
impl<'de> Deserialize<'de> for RuntimeErrorWire
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 From<ClientError> for RuntimeErrorWire
impl From<ClientError> for RuntimeErrorWire
Source§fn from(value: ClientError) -> Self
fn from(value: ClientError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RuntimeErrorWire
impl PartialEq for RuntimeErrorWire
Source§impl Serialize for RuntimeErrorWire
impl Serialize for RuntimeErrorWire
impl Eq for RuntimeErrorWire
impl StructuralPartialEq for RuntimeErrorWire
Auto Trait Implementations§
impl Freeze for RuntimeErrorWire
impl RefUnwindSafe for RuntimeErrorWire
impl Send for RuntimeErrorWire
impl Sync for RuntimeErrorWire
impl Unpin for RuntimeErrorWire
impl UnsafeUnpin for RuntimeErrorWire
impl UnwindSafe for RuntimeErrorWire
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