pub struct CoinbaseOrderErrorResponse {
pub error: SmartString,
pub message: SmartString,
pub error_details: SmartString,
pub preview_failure_reason: SmartString,
pub new_order_failure_reason: SmartString,
}Expand description
Error response from order operations
Fields§
§error: SmartStringError code or type
message: SmartStringHuman-readable error message
error_details: SmartStringDetailed error information
preview_failure_reason: SmartStringReason for preview failure (if applicable)
new_order_failure_reason: SmartStringReason for new order failure (if applicable)
Trait Implementations§
Source§impl Clone for CoinbaseOrderErrorResponse
impl Clone for CoinbaseOrderErrorResponse
Source§fn clone(&self) -> CoinbaseOrderErrorResponse
fn clone(&self) -> CoinbaseOrderErrorResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CoinbaseOrderErrorResponse
impl Debug for CoinbaseOrderErrorResponse
Source§impl<'de> Deserialize<'de> for CoinbaseOrderErrorResponse
impl<'de> Deserialize<'de> for CoinbaseOrderErrorResponse
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
Auto Trait Implementations§
impl Freeze for CoinbaseOrderErrorResponse
impl RefUnwindSafe for CoinbaseOrderErrorResponse
impl Send for CoinbaseOrderErrorResponse
impl Sync for CoinbaseOrderErrorResponse
impl Unpin for CoinbaseOrderErrorResponse
impl UnwindSafe for CoinbaseOrderErrorResponse
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