pub struct TradingErrorResponseError {
pub type: Type,
pub message: String,
pub error_code: Option<ErrorCodes>,
}Fields§
§type: Type§message: String§error_code: Option<ErrorCodes>Implementations§
Source§impl TradingErrorResponseError
impl TradingErrorResponseError
pub fn new(type: Type, message: String) -> TradingErrorResponseError
Trait Implementations§
Source§impl Clone for TradingErrorResponseError
impl Clone for TradingErrorResponseError
Source§fn clone(&self) -> TradingErrorResponseError
fn clone(&self) -> TradingErrorResponseError
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 TradingErrorResponseError
impl Debug for TradingErrorResponseError
Source§impl Default for TradingErrorResponseError
impl Default for TradingErrorResponseError
Source§fn default() -> TradingErrorResponseError
fn default() -> TradingErrorResponseError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TradingErrorResponseError
impl<'de> Deserialize<'de> for TradingErrorResponseError
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 StructuralPartialEq for TradingErrorResponseError
Auto Trait Implementations§
impl Freeze for TradingErrorResponseError
impl RefUnwindSafe for TradingErrorResponseError
impl Send for TradingErrorResponseError
impl Sync for TradingErrorResponseError
impl Unpin for TradingErrorResponseError
impl UnwindSafe for TradingErrorResponseError
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