pub struct AuctionError {
pub error: String,
pub status_code: u64,
pub status_text: String,
}Expand description
AuctionError is the wrapper for all errors returned by the mekatek API.
Fields§
§error: String§status_code: u64§status_text: StringTrait Implementations§
Source§impl Clone for AuctionError
impl Clone for AuctionError
Source§fn clone(&self) -> AuctionError
fn clone(&self) -> AuctionError
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 AuctionError
impl Debug for AuctionError
Source§impl<'de> Deserialize<'de> for AuctionError
impl<'de> Deserialize<'de> for AuctionError
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 Display for AuctionError
impl Display for AuctionError
Source§impl Error for AuctionError
impl Error for AuctionError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for AuctionError
impl RefUnwindSafe for AuctionError
impl Send for AuctionError
impl Sync for AuctionError
impl Unpin for AuctionError
impl UnsafeUnpin for AuctionError
impl UnwindSafe for AuctionError
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