pub struct Get500Response {
pub status_code: i32,
pub error: String,
pub message: String,
}Fields§
§status_code: i32§error: String§message: StringImplementations§
Trait Implementations§
source§impl Clone for Get500Response
impl Clone for Get500Response
source§fn clone(&self) -> Get500Response
fn clone(&self) -> Get500Response
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 Get500Response
impl Debug for Get500Response
source§impl Default for Get500Response
impl Default for Get500Response
source§fn default() -> Get500Response
fn default() -> Get500Response
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for Get500Response
impl<'de> Deserialize<'de> for Get500Response
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 Get500Response
impl PartialEq for Get500Response
source§fn eq(&self, other: &Get500Response) -> bool
fn eq(&self, other: &Get500Response) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for Get500Response
impl Serialize for Get500Response
impl StructuralPartialEq for Get500Response
Auto Trait Implementations§
impl RefUnwindSafe for Get500Response
impl Send for Get500Response
impl Sync for Get500Response
impl Unpin for Get500Response
impl UnwindSafe for Get500Response
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