pub struct QuoteError {
pub instrument_name: String,
pub side: String,
pub error_code: i32,
pub error_message: String,
}Expand description
Quote error information
Fields§
§instrument_name: StringInstrument name that failed
side: StringSide that failed
error_code: i32Error code
error_message: StringError message
Trait Implementations§
Source§impl Clone for QuoteError
impl Clone for QuoteError
Source§fn clone(&self) -> QuoteError
fn clone(&self) -> QuoteError
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 QuoteError
impl Debug for QuoteError
Source§impl<'de> Deserialize<'de> for QuoteError
impl<'de> Deserialize<'de> for QuoteError
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 QuoteError
impl Display for QuoteError
Auto Trait Implementations§
impl Freeze for QuoteError
impl RefUnwindSafe for QuoteError
impl Send for QuoteError
impl Sync for QuoteError
impl Unpin for QuoteError
impl UnwindSafe for QuoteError
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